This commit is contained in:
2025-10-15 21:07:18 +07:00
parent 12d039af6e
commit fd384a1798

View File

@ -50,8 +50,8 @@ export class TrxTransaction {
type_transfer: TrxTransactionTransferStatus; type_transfer: TrxTransactionTransferStatus;
@Column({ @Column({
nullable: false, nullable: true,
default: false, default: null,
}) })
is_maker_approved: boolean; is_maker_approved: boolean;
@ -65,8 +65,8 @@ export class TrxTransaction {
maker_approved_at: Date; maker_approved_at: Date;
@Column({ @Column({
nullable: false, nullable: true,
default: false, default: null,
}) })
is_checker_approved: boolean; is_checker_approved: boolean;
@ -80,8 +80,8 @@ export class TrxTransaction {
checker_approved_at: Date; checker_approved_at: Date;
@Column({ @Column({
nullable: false, nullable: true,
default: false, default: null,
}) })
is_signer_approved: boolean; is_signer_approved: boolean;