From 49203abbe174033dd100811391bd9cd486f1f99c Mon Sep 17 00:00:00 2001 From: avicenan Date: Thu, 11 Jun 2026 08:31:07 +0900 Subject: [PATCH] feat(patient): add new column of is_card_printing to handle printing progress --- src/entity/emr/emr_patient.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_patient.ts b/src/entity/emr/emr_patient.ts index 504f9c1..936f665 100644 --- a/src/entity/emr/emr_patient.ts +++ b/src/entity/emr/emr_patient.ts @@ -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;