feat(patient): add card number in patient data

This commit is contained in:
avicenan
2026-05-25 16:18:46 +09:00
parent 38f58a32e1
commit dc2e0a1cec

View File

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