update field isHigh & order educ.level

This commit is contained in:
Bright 2025-03-11 10:36:59 +07:00
parent cfb5038357
commit 848b574713
6 changed files with 285 additions and 3 deletions

View file

@ -144,6 +144,13 @@ export class ProfileEducationHistory extends EntityBase {
})
isEducation: boolean;
@Column({
nullable: true,
comment: "เป็นวุฒิศึกษาสูงสุด",
default: null,
})
isHigh: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ",
@ -222,6 +229,9 @@ export class CreateProfileEducationHistory {
@Column()
isEducation: boolean | null;
@Column()
isHigh?: boolean | null;
@Column("uuid")
profileEducationId: string | null;