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