se modifico la base de datos y se agrego los excel

This commit is contained in:
2023-03-17 13:38:37 -06:00
parent 0158b6af98
commit 569dbca11f
29 changed files with 1501 additions and 1245 deletions
+6 -6
View File
@@ -19,26 +19,26 @@ export class Miembro {
@PrimaryGeneratedColumn()
id_miembro: number;
@Column({ nullable: false, length: 50 })
@Column({ nullable: false, length: 40 })
nombre: string;
@Column({ nullable: false, length: 50 })
@Column({ nullable: false, length: 30 })
apellido_paterno: string;
@Column({ nullable: false, length: 50 })
@Column({ nullable: false, length: 30 })
apellido_materno: string;
@Column({ nullable: false })
id_tipo_miembro: number;
@Column({ nullable: false })
@Column({length: 40, nullable: false })
@IsEmail()
email: string;
@Column({ nullable: false })
@Column({length: 180, nullable: false })
password: string;
@Column({ length: 260, nullable:true})
@Column({ length: 200, nullable:true})
descripcion: string;
@Column({nullable: true})