se modifico la base de datos y se agrego los excel
This commit is contained in:
@@ -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})
|
||||
|
||||
Reference in New Issue
Block a user