feat(reg): add flaggin of is referral emergency
Some checks failed
Deploy Backend / deploy (push) Has been cancelled

This commit is contained in:
avicenan
2026-06-25 10:59:41 +09:00
parent 6c7012b15a
commit b44f651f0c

View File

@ -77,6 +77,9 @@ export class EmrRegistration {
@JoinColumn({ name: "referral_hospital_id" })
referral_hospital: RefferalHospital;
@Column({ nullable: false, type: "boolean", default: false })
is_referral_emergency: boolean;
@Column({ nullable: true, type: "text" })
patient_category: string;