table profileHonor add isUpload

This commit is contained in:
kittapath 2025-01-28 14:37:40 +07:00
parent 76a994d7df
commit 8b699f6441
10 changed files with 81 additions and 3 deletions

View file

@ -62,6 +62,12 @@ export class ProfileAbility extends EntityBase {
})
field: string;
@Column({
comment: "แนบไฟล์เอกสาร",
default: false,
})
isUpload: boolean;
@Column({
nullable: true,
length: 40,
@ -112,4 +118,5 @@ export type UpdateProfileAbility = {
dateStart?: Date | null;
dateEnd?: Date | null;
field?: string | null;
isUpload?: boolean | null;
};