wait migrate

This commit is contained in:
AdisakKanthawilang 2025-05-13 16:08:01 +07:00
parent 98638b9182
commit 4fcf9b0492

View file

@ -382,6 +382,13 @@ export class SalaryProfile extends EntityBase {
})
isSpecial: boolean;
@Column({
nullable: true,
comment: "ดีเด่น",
default: null,
})
isGood: boolean;
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })
salaryOrg: SalaryOrg;