From 85c96521af5228d5e0ceaf8d5aab7bb77cf4471c Mon Sep 17 00:00:00 2001 From: wayanrivan Date: Fri, 29 May 2026 14:01:19 +0700 Subject: [PATCH] update: add tbak column to emr_soap_notes --- src/entity/emr/emr_soap_notes.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_soap_notes.ts b/src/entity/emr/emr_soap_notes.ts index 8b70b13..fd92bac 100644 --- a/src/entity/emr/emr_soap_notes.ts +++ b/src/entity/emr/emr_soap_notes.ts @@ -45,6 +45,9 @@ export class EmrSoapNotes { @Column({ nullable: true, type: "text" }) plan: string | null; + @Column({ nullable: false, type: "boolean", default: false }) + tbak: boolean; + @CreateDateColumn() created_at: Date;