From fa472fcbf18b97a6b65f078978f383f0bf62b0df Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 4 Feb 2026 18:33:09 -0600 Subject: [PATCH] feat: ampliacion de campos --- src/eventos/evento.entity.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eventos/evento.entity.ts b/src/eventos/evento.entity.ts index e4abbcc..4c162d5 100644 --- a/src/eventos/evento.entity.ts +++ b/src/eventos/evento.entity.ts @@ -35,7 +35,7 @@ export class Evento { @Column({ nullable: false }) cupo: number; - @Column({ length: 300, nullable: false }) + @Column({ length: 500, nullable: false }) observaciones: string; @Column({ type: 'decimal', precision: 7, scale: 2, nullable: true }) @@ -47,7 +47,7 @@ export class Evento { @Column({ length: 40, nullable: true }) tipo_acreditacion: string; - @Column({ length: 200, nullable: false }) + @Column({ length: 500, nullable: false }) objetivo: string; @Column({ nullable: false, type: 'datetime' }) -- 2.43.0