diff --git a/src/entities/ChangePosition.ts b/src/entities/ChangePosition.ts index 428ba1c5..907ef018 100644 --- a/src/entities/ChangePosition.ts +++ b/src/entities/ChangePosition.ts @@ -20,6 +20,14 @@ export class ChangePosition extends EntityBase { }) date: Date; + @Column({ + nullable: true, + comment: "สถานะ", + type: "text", + default: null, + }) + status: string; + @OneToMany(() => ProfileChangePosition, (x) => x.profile) profileChangePosition: ProfileChangePosition[]; }