From f01c9bfa1033d21dfe1010955375bfe423095b8e Mon Sep 17 00:00:00 2001 From: avicenan Date: Fri, 22 May 2026 11:19:40 +0900 Subject: [PATCH] update medical form --- src/entity/medical_form.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/entity/medical_form.ts b/src/entity/medical_form.ts index f9b9255..ba454ac 100644 --- a/src/entity/medical_form.ts +++ b/src/entity/medical_form.ts @@ -12,6 +12,13 @@ export class MedicalForm { @PrimaryGeneratedColumn("uuid") id: string; + @Column({ + nullable: false, + length: 256, + type: "varchar", + }) + title: string; + @Column({ nullable: false, length: 256, @@ -26,6 +33,13 @@ export class MedicalForm { }) description: string; + @Column({ + nullable: true, + length: 512, + type: "varchar", + }) + picture: string; + @Column({ nullable: false, length: 64,