From c160a958aff83a50e69d6a092ed0b768af153257 Mon Sep 17 00:00:00 2001 From: xXpuma99Xx <51341582+xXpuma99Xx@users.noreply.github.com> Date: Thu, 14 Jul 2022 09:37:22 -0500 Subject: [PATCH] =?UTF-8?q?tam=C3=B1o=20campo=20ubicacion=20apliado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/institucion/entity/institucion.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/institucion/entity/institucion.entity.ts b/src/institucion/entity/institucion.entity.ts index 34112c6..77a67b1 100644 --- a/src/institucion/entity/institucion.entity.ts +++ b/src/institucion/entity/institucion.entity.ts @@ -52,7 +52,7 @@ export class Institucion { @Column({ type: Number, nullable: false, default: 10 }) tiempo_recoger: number; - @Column({ type: String, nullable: true, length: 60 }) + @Column({ type: String, nullable: true, length: 100 }) ubicacion: string; @OneToMany(() => InstitucionCarrera, (carrera) => carrera.institucion)