From 5ff288b45f5657457fab5669ccaa011ddcbce35e Mon Sep 17 00:00:00 2001 From: avicenan Date: Wed, 17 Jun 2026 15:14:15 +0900 Subject: [PATCH] feat(patient): add column of card_name to store the card display name --- 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 03ae6e4..3c7de9d 100644 --- a/src/entity/emr/emr_patient.ts +++ b/src/entity/emr/emr_patient.ts @@ -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;