no message

This commit is contained in:
Bright 2024-06-11 16:24:10 +07:00
parent fc0f86b845
commit 87047b383d

View file

@ -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[];
}