From 593356e4e5614a5236cc869fc2b51b8ad7745350 Mon Sep 17 00:00:00 2001 From: fro1991 Date: Wed, 29 Oct 2025 21:55:00 +0700 Subject: [PATCH] update --- src/entity/trx_receivers.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/entity/trx_receivers.ts b/src/entity/trx_receivers.ts index 22c1dae..b458efc 100644 --- a/src/entity/trx_receivers.ts +++ b/src/entity/trx_receivers.ts @@ -56,6 +56,18 @@ export class TrxReceiver { }) account_number: string; + @Column({ + nullable: true, + length: 256, + }) + iban: string; + + @Column({ + nullable: true, + length: 256, + }) + bsb: string; + @Column() @CreateDateColumn() created_at: Date;