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;