From a364c97a89085570b4a9f8bb411f684d85d47d36 Mon Sep 17 00:00:00 2001 From: avicenan Date: Sun, 17 May 2026 01:52:26 +0900 Subject: [PATCH] feat(regis-opd): add column of room number --- src/entity/emr/emr_registration_outpatient.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_registration_outpatient.ts b/src/entity/emr/emr_registration_outpatient.ts index 31d2fbe..cbb5f1b 100644 --- a/src/entity/emr/emr_registration_outpatient.ts +++ b/src/entity/emr/emr_registration_outpatient.ts @@ -38,6 +38,9 @@ export class EmrRegistrationOutpatient { @JoinColumn() guarantor: PatientGuarantor; + @Column({ nullable: true, length: 64 }) + room_number: string; + @ManyToOne(() => Room, { onDelete: "NO ACTION" }) @JoinColumn() room: Room;