From ec777eb72b797ef1450e1cc783b6797da5ec9fb5 Mon Sep 17 00:00:00 2001 From: fro1991 Date: Sat, 18 Oct 2025 02:29:49 +0700 Subject: [PATCH] update --- src/entity/trx_customer_accounts.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/entity/trx_customer_accounts.ts b/src/entity/trx_customer_accounts.ts index 2d53294..2b10412 100644 --- a/src/entity/trx_customer_accounts.ts +++ b/src/entity/trx_customer_accounts.ts @@ -41,12 +41,13 @@ export class TrxCustomerAccount { address: string; @Column({ + nullable: true, type: "float8", }) balance: number; @Column({ - nullable: false, + nullable: true, }) balance_at: Date;