From b812fca8035463b610600784ff3827839425d7ae Mon Sep 17 00:00:00 2001 From: lemuel Date: Mon, 15 Aug 2022 13:17:23 -0500 Subject: [PATCH] carrera clave mayor carecateres --- src/institucion-carrera/entity/carrera.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/institucion-carrera/entity/carrera.entity.ts b/src/institucion-carrera/entity/carrera.entity.ts index 74142f5..f1f5353 100644 --- a/src/institucion-carrera/entity/carrera.entity.ts +++ b/src/institucion-carrera/entity/carrera.entity.ts @@ -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 })