From 7e46d572431d2b2cc376b4bc4930e99ecf188fd6 Mon Sep 17 00:00:00 2001 From: avicenan Date: Mon, 8 Jun 2026 15:47:45 +0900 Subject: [PATCH] add new column of facility_id for 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 7e2b476..871a6b7 100644 --- a/src/entity/hospital_information.ts +++ b/src/entity/hospital_information.ts @@ -36,6 +36,12 @@ export class HospitalInformation { }) code: string; + @Column({ + type: 'text', + nullable: true, + }) + facility_id: string; + @Column({ type: 'text', nullable: false,