From 8b01c7a752d658e736c281b3e3fdb9b8c2e39d1e Mon Sep 17 00:00:00 2001 From: fro1991 Date: Mon, 3 Nov 2025 21:59:37 +0700 Subject: [PATCH] update --- src/entity/trx_transactions.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/entity/trx_transactions.ts b/src/entity/trx_transactions.ts index c728305..f5b3649 100644 --- a/src/entity/trx_transactions.ts +++ b/src/entity/trx_transactions.ts @@ -70,6 +70,11 @@ export class TrxTransaction { }) target_amount: number; + @Column({ + default: false, + }) + is_deal_request: boolean; + @ManyToOne(() => TrxCustomerCost, { onDelete: "NO ACTION" }) @JoinColumn() customer_cost: TrxCustomerCost;