fix(patient): make first and last name nullable

This commit is contained in:
avicenan
2026-05-13 19:47:15 +09:00
parent ea608d79e9
commit edcb74f0c8

View File

@ -21,10 +21,10 @@ export class EmrPatient {
@Column({ nullable: true, length: 64 })
passport_number: string;
@Column({ nullable: false, length: 256 })
@Column({ nullable: true, length: 256 })
first_name: string;
@Column({ nullable: false, length: 256 })
@Column({ nullable: true, length: 256 })
last_name: string;
@Column({ nullable: true, length: 256 })