diff --git a/src/institucion/entity/institucion.entity.ts b/src/institucion/entity/institucion.entity.ts index 518417f..43cf520 100644 --- a/src/institucion/entity/institucion.entity.ts +++ b/src/institucion/entity/institucion.entity.ts @@ -23,6 +23,12 @@ export class Institucion { @Column({ type: Number, nullable: false, default: 7 }) dias_multa_retraso: number; + @Column({ type: String, nullable: true, length: 40 }) + dominio: string; + + @Column({ type: Boolean, nullable: true, default: false }) + email_institucional: boolean; + @Column({ type: String, nullable: false, length: 150 }) institucion: string;