add debtor_type
This commit is contained in:
@ -25,6 +25,12 @@ export class CreditConfigs {
|
||||
})
|
||||
param: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 256
|
||||
})
|
||||
debtor_type: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'int2'
|
||||
@ -37,6 +43,13 @@ export class CreditConfigs {
|
||||
})
|
||||
value: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
default: Status['Not Active'],
|
||||
length: 64
|
||||
})
|
||||
status: Status;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
created_at: Date;
|
||||
|
||||
Reference in New Issue
Block a user