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;
@Column({
nullable: false,
default: false,
})
locked: boolean;
@ManyToOne(() => TrxOccupation, { onDelete: "NO ACTION" })
@JoinTable()
occupation: TrxOccupation;