From c523bd9efaf028f393271e6a156b58a609762392 Mon Sep 17 00:00:00 2001 From: avicenan Date: Wed, 3 Jun 2026 10:43:35 +0900 Subject: [PATCH] feat(hospital-info): add new column of code in the hospital information --- src/entity/hospital_information.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entity/hospital_information.ts b/src/entity/hospital_information.ts index d9e036b..07b3b71 100644 --- a/src/entity/hospital_information.ts +++ b/src/entity/hospital_information.ts @@ -30,6 +30,12 @@ export class HospitalInformation { }) name: string; + @Column({ + type: 'text', + nullable: false, + }) + code: string; + @Column({ type: 'text', nullable: false,