feat(guarantor): add is default and is full paid column

This commit is contained in:
avicenan
2026-04-25 12:56:44 +07:00
parent 96b0be3102
commit 4833b38932

View File

@ -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;