From dd7ef4c70c71c89e959c02562a41b4f35f1590e0 Mon Sep 17 00:00:00 2001 From: fro1991 Date: Thu, 30 Oct 2025 03:47:25 +0700 Subject: [PATCH] update --- src/entity/trx_transactions.ts | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/entity/trx_transactions.ts b/src/entity/trx_transactions.ts index 2d8a367..c728305 100644 --- a/src/entity/trx_transactions.ts +++ b/src/entity/trx_transactions.ts @@ -116,6 +116,18 @@ export class TrxTransaction { @JoinColumn() signer_verification: TrxVerification; + @Column({ + nullable: true, + length: 256, + }) + teller_file: string; + + @Column({ nullable: true, length: 256 }) + tellered_by: string; + + @Column({ nullable: true }) + tellered_at: Date; + @Column({ nullable: true, length: 256, @@ -150,12 +162,6 @@ export class TrxTransaction { }) remark: string; - @Column({ - nullable: true, - length: 256, - }) - mt103_file: string; - @Column({ nullable: true, length: 256 }) teller_reference_number: string;