This commit is contained in:
2026-05-01 20:11:25 +07:00
parent 96242bab30
commit 4f14d1a170

View File

@ -19,6 +19,10 @@ export class EmrRegistrationInpatient {
@JoinColumn()
registration: EmrRegistration;
@ManyToOne(() => Room, { onDelete: "NO ACTION", nullable: true })
@JoinColumn()
room: Room | null;
@ManyToOne(() => InpatientRoom, { onDelete: "NO ACTION" })
@JoinColumn()
inpatient_room: InpatientRoom;