From 4fcf9b049251e6585d3758eebb448985a80bcdb3 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 13 May 2025 16:08:01 +0700 Subject: [PATCH] wait migrate --- src/entities/SalaryProfile.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/entities/SalaryProfile.ts b/src/entities/SalaryProfile.ts index a9948fe..5783f22 100644 --- a/src/entities/SalaryProfile.ts +++ b/src/entities/SalaryProfile.ts @@ -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;