feat(patient): add column of card_name to store the card display name

This commit is contained in:
avicenan
2026-06-17 15:14:15 +09:00
parent 19af842aec
commit 5ff288b45f

View File

@ -123,6 +123,9 @@ export class EmrPatient {
@Column({ nullable: true, type: "int", default: 0 })
card_print_count: number;
@Column({ nullable: true, length: 64 })
card_name: string;
@Column()
@CreateDateColumn()
created_at: Date;