This commit is contained in:
2025-12-30 13:41:31 +07:00
parent 4f59b70ae4
commit 8f059c1502

View File

@ -71,6 +71,12 @@ export class TrxCustomerUser {
}) })
status: Status; status: Status;
@Column({
nullable: false,
default: false,
})
locked: boolean;
@ManyToOne(() => TrxOccupation, { onDelete: "NO ACTION" }) @ManyToOne(() => TrxOccupation, { onDelete: "NO ACTION" })
@JoinTable() @JoinTable()
occupation: TrxOccupation; occupation: TrxOccupation;