From 8f059c1502913fb4544b8adacd46e7bda7739772 Mon Sep 17 00:00:00 2001 From: "fazri.is" Date: Tue, 30 Dec 2025 13:41:31 +0700 Subject: [PATCH] update --- src/entity/trx_customer_users.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entity/trx_customer_users.ts b/src/entity/trx_customer_users.ts index cd56f67..6e45348 100644 --- a/src/entity/trx_customer_users.ts +++ b/src/entity/trx_customer_users.ts @@ -71,6 +71,12 @@ export class TrxCustomerUser { }) status: Status; + @Column({ + nullable: false, + default: false, + }) + locked: boolean; + @ManyToOne(() => TrxOccupation, { onDelete: "NO ACTION" }) @JoinTable() occupation: TrxOccupation;