From c8e5ccf2b89d4903e19412e168fb76abf150acc7 Mon Sep 17 00:00:00 2001 From: avicenan Date: Tue, 26 May 2026 15:04:16 +0900 Subject: [PATCH] feat(vital-sgin): add column of onset --- src/entity/emr/emr_vital_signs.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_vital_signs.ts b/src/entity/emr/emr_vital_signs.ts index 072bb3c..163a5ca 100644 --- a/src/entity/emr/emr_vital_signs.ts +++ b/src/entity/emr/emr_vital_signs.ts @@ -157,6 +157,9 @@ export class EmrVitalSigns { @Column({ nullable: true, type: "boolean" }) support_when_sittiong: boolean; + @Column({ nullable: true, length: 64 }) + onset: string; + @Column() @CreateDateColumn() created_at: Date;