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
+9 -12
View File
@@ -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(