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
+1 -1
View File
@@ -6,7 +6,7 @@ export class Area {
@PrimaryGeneratedColumn()
id_area: number
@Column({length:60, nullable:false})
@Column({length:20, nullable:false})
area: string
@OneToMany(
+1 -1
View File
@@ -6,7 +6,7 @@ export class Carrera {
@PrimaryGeneratedColumn()
id_carrera: number
@Column({ length:70, nullable: false})
@Column({ length:40, nullable: false})
carrera: string
@OneToMany(
+1 -1
View File
@@ -6,7 +6,7 @@ export class TipoMiembro {
@PrimaryGeneratedColumn()
id_tipo_miembro: number
@Column({length:60, nullable:false})
@Column({length:15, nullable:false})
tipo_miembro: string
@OneToMany(