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)