From e777c1d9e27f65cddf156c7f6b0160b3036fdfbc Mon Sep 17 00:00:00 2001 From: avicenan Date: Sun, 24 May 2026 11:58:50 +0900 Subject: [PATCH] fix(emergency): consciousness nullable --- src/entity/emr/emr_vital_signs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entity/emr/emr_vital_signs.ts b/src/entity/emr/emr_vital_signs.ts index 74015de..b13adfc 100644 --- a/src/entity/emr/emr_vital_signs.ts +++ b/src/entity/emr/emr_vital_signs.ts @@ -45,7 +45,7 @@ export class EmrVitalSigns { @Column({ type: "enum", enum: consciousness, - nullable: false, + nullable: true, }) consciousness: consciousness;