From 640bc9cf9eab6ed2e973d3e2387fd5379599d8c3 Mon Sep 17 00:00:00 2001 From: avicenan Date: Wed, 17 Jun 2026 15:45:52 +0900 Subject: [PATCH] feat(patient): add new column of card_print_queue_id to store the task/job id --- 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 3c7de9d..41df094 100644 --- a/src/entity/emr/emr_patient.ts +++ b/src/entity/emr/emr_patient.ts @@ -126,6 +126,9 @@ export class EmrPatient { @Column({ nullable: true, length: 64 }) card_name: string; + @Column({ nullable: true }) + card_print_queue_id: string; + @Column() @CreateDateColumn() created_at: Date;