se modifico la base de datos y se agrego los excel
This commit is contained in:
@@ -6,34 +6,31 @@ export class Participante {
|
||||
@PrimaryGeneratedColumn()
|
||||
id_participante: number;
|
||||
|
||||
@Column({ type: String, nullable: false, length: 100 })
|
||||
@Column({ type: String, nullable: false, length: 40 })
|
||||
nombre: string;
|
||||
|
||||
@Column({ nullable: false })
|
||||
@Column({ nullable: false, length: 30 })
|
||||
apellido_paterno: string;
|
||||
|
||||
@Column({ nullable: false })
|
||||
@Column({ nullable: false, length: 30 })
|
||||
apellido_materno: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@Column({ nullable: true, length: 12 })
|
||||
telefono: string;
|
||||
|
||||
@Column({ nullable: false })
|
||||
@Column({ nullable: false, length: 40 })
|
||||
email: string;
|
||||
|
||||
@Column({ nullable: true }) //
|
||||
@Column({ nullable: true, length: 180}) //
|
||||
password: string;
|
||||
|
||||
@Column({ nullable: true }) //
|
||||
@Column({length:20, nullable: true }) //
|
||||
tipo: string;
|
||||
|
||||
@Column({ nullable: true }) //
|
||||
estado: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@Column({ nullable: true, length: 50})
|
||||
institucion_procedencia: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@Column({ nullable: true, length:50})
|
||||
carrera: string;
|
||||
|
||||
@OneToMany(
|
||||
|
||||
Reference in New Issue
Block a user