add debtor_type

This commit is contained in:
fro1991
2025-02-08 15:38:42 +07:00
parent 9b7bef0bf9
commit 1beb8d15a6

View File

@ -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;