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,