From 4833b38932647a3c280fd3c23a01714feb9ed66e Mon Sep 17 00:00:00 2001 From: avicenan Date: Sat, 25 Apr 2026 12:56:44 +0700 Subject: [PATCH] feat(guarantor): add is default and is full paid column --- src/entity/patient_guarantor.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entity/patient_guarantor.ts b/src/entity/patient_guarantor.ts index 9354841..3722142 100644 --- a/src/entity/patient_guarantor.ts +++ b/src/entity/patient_guarantor.ts @@ -59,6 +59,12 @@ export class PatientGuarantor { @JoinColumn() faretype!: FareType; + @Column({ nullable: true, default: false }) + is_default?: boolean; + + @Column({ nullable: true, default: false }) + is_full_paid?: boolean; + // Tanggal pembuatan @CreateDateColumn() created_at!: Date;