update patient entity to include passport number field

This commit is contained in:
wayanrivan
2026-05-10 22:35:52 +07:00
parent 8d7a177b82
commit 7a0bdc6571

View File

@ -18,6 +18,9 @@ export class EmrPatient {
@Column({ nullable: false, length: 64 })
mrn_number: string;
@Column({ nullable: false, length: 64 })
passport_number: string;
@Column({ nullable: false, length: 256 })
first_name: string;