This commit is contained in:
meusinfirmary
2025-02-13 01:34:37 +07:00
parent b112e7af32
commit 196cadd7e9
2 changed files with 12 additions and 0 deletions

View File

@ -66,6 +66,12 @@ export class BankGaransi {
}) })
contract_number: String; contract_number: String;
@Column({
nullable: true,
length: 4096,
})
contract_title: String;
@Column({ @Column({
nullable: true, nullable: true,
length: 256, length: 256,

View File

@ -62,6 +62,12 @@ export class BankGaransiPending {
}) })
contract_number: string; contract_number: string;
@Column({
nullable: true,
length: 4096,
})
contract_title: String;
@Column({ @Column({
nullable: true, nullable: true,
length: 256, length: 256,