From ebde61c66450c400780adb1bdaf7c4c0186865cb Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 23 Feb 2022 21:46:02 +0100 Subject: [PATCH] corrected type to BigInt --- database/entity/0025-combine_transaction_tables2/Transaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/entity/0025-combine_transaction_tables2/Transaction.ts b/database/entity/0025-combine_transaction_tables2/Transaction.ts index f707e0811..77f23e4e4 100644 --- a/database/entity/0025-combine_transaction_tables2/Transaction.ts +++ b/database/entity/0025-combine_transaction_tables2/Transaction.ts @@ -29,7 +29,7 @@ export class Transaction extends BaseEntity { sendSenderFinalBalance: BigInt | null @Column({ name: 'balance', type: 'bigint', default: 0 }) - balance: number + balance: BigInt @Column({ name: 'balance_date',