feat(regis-opd): add column of room number

This commit is contained in:
avicenan
2026-05-17 01:52:26 +09:00
parent 77733b1d1f
commit a364c97a89

View File

@ -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;