diff --git a/src/entities/Profile.ts b/src/entities/Profile.ts index f8218989..71f8266d 100644 --- a/src/entities/Profile.ts +++ b/src/entities/Profile.ts @@ -158,6 +158,14 @@ export class Profile extends EntityBase { }) telephoneNumber: string; + @Column({ + nullable: true, + comment: "สัญชาติ", + length: 255, + default: null, + }) + nationality: string; + @Column({ nullable: true, comment: "เพศ", @@ -291,6 +299,7 @@ export class CreateProfile { birthDate: Date | null; ethnicity: string | null; telephoneNumber: string | null; + nationality: string | null; citizenId: string; religionId: string | null; posLevelId: string | null; @@ -313,6 +322,7 @@ export type UpdateProfile = { birthDate?: Date | null; ethnicity?: string | null; telephoneNumber?: string | null; + nationality?: string | null; citizenId?: string | null; religionId: string | null; posLevelId?: string | null;