update bg table

This commit is contained in:
meusinfirmary
2025-01-18 01:46:01 +07:00
parent 23354d70e8
commit e0315a8809

View File

@ -103,6 +103,42 @@ export class BankGaransi {
})
provision: number;
@Column({
nullable: true,
length: 256,
})
doc_bang_guarantee: string;
@Column({
nullable: true,
length: 256,
})
doc_transfer_ownership: string;
@Column({
nullable: true,
length: 256,
})
doc_transfer_rights: string;
@Column({
nullable: true,
length: 256,
})
doc_agreement_bg: string;
@Column({
nullable: true,
length: 256,
})
doc_power_of_attorney: string;
@Column({
nullable: true,
length: 256,
})
doc_statement_letter: string;
@ManyToOne(() => BankGaransiStatus, (bank_garansi_status) => bank_garansi_status.bank_garansi)
@JoinColumn({ name: "bgStatusId" }) // Add foreign key column
bank_garansi_status: BankGaransiStatus;