feat(patient): add new column of is_card_printing to handle printing progress

This commit is contained in:
avicenan
2026-06-11 08:31:07 +09:00
parent 56bfc413ae
commit 49203abbe1

View File

@ -115,6 +115,9 @@ export class EmrPatient {
@Column({ nullable: true, length: 128 })
tag_id: string;
@Column({ nullable: false, type: 'boolean', default: false })
is_card_printing: boolean;
@Column()
@CreateDateColumn()
created_at: Date;