diff --git a/src/entities/ProfileEducation.ts b/src/entities/ProfileEducation.ts index 88991be8..bc96e7da 100644 --- a/src/entities/ProfileEducation.ts +++ b/src/entities/ProfileEducation.ts @@ -234,6 +234,9 @@ export class CreateProfileEducation { @Column() isEducation: boolean | null; + + @Column() + note: string | null; } export type UpdateProfileEducation = Partial; diff --git a/src/entities/ProfileInsignia.ts b/src/entities/ProfileInsignia.ts index 7c883dc6..1d7cdc22 100644 --- a/src/entities/ProfileInsignia.ts +++ b/src/entities/ProfileInsignia.ts @@ -180,6 +180,9 @@ export class CreateProfileInsignia { @Column() refCommandNo: string | null; + + @Column() + note: string | null; } export type UpdateProfileInsignia = Partial;