fix(patient): add fullname column

This commit is contained in:
avicenan
2026-02-24 08:13:30 +07:00
parent b2868a8cf8
commit f20071638c

View File

@ -29,6 +29,9 @@ export class EmrPatient {
@Column({ nullable: false, length: 256 })
last_name: string;
@Column({ nullable: true, length: 256 })
full_name: string;
@Column({ type: "date", nullable: false })
birth_date: Date;