From f1c7add92aa19dd12830e2f55e57938df376614d Mon Sep 17 00:00:00 2001 From: "fazri.is" Date: Thu, 20 Nov 2025 04:04:58 +0900 Subject: [PATCH] update --- src/entity/trx_customer_users.ts | 6 ++++++ src/entity/trx_customers.ts | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/entity/trx_customer_users.ts b/src/entity/trx_customer_users.ts index 9fe66cb..38da788 100644 --- a/src/entity/trx_customer_users.ts +++ b/src/entity/trx_customer_users.ts @@ -51,6 +51,12 @@ export class TrxCustomerUser { }) name: string; + @Column({ + nullable: false, + length: 256, + }) + file: string; + @Column({ type: "jsonb", nullable: true, diff --git a/src/entity/trx_customers.ts b/src/entity/trx_customers.ts index 3bfc6d7..b40c439 100644 --- a/src/entity/trx_customers.ts +++ b/src/entity/trx_customers.ts @@ -129,6 +129,18 @@ export class TrxCustomer { @JoinTable() country: TrxCountry; + @Column({ + nullable: true, + length: 256, + }) + identity_number: string; + + @Column({ + nullable: true, + length: 256, + }) + identity_type: TrxIdentityType; + @Column({ nullable: true, length: 256,