This commit is contained in:
Lemuel
2022-08-15 14:30:24 -05:00
@@ -17,7 +17,7 @@ export class Carrera {
@Column({ type: String, nullable: false, length: 150 })
carrera: string;
@Column({ type: String, nullable: false, length: 3 })
@Column({ type: String, nullable: false, length: 10 })
clave: string;
@ManyToOne(() => Nivel, (nivel) => nivel.carreras, { eager: true })