feat(guarantor): add is default and is full paid column
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user