fix: ลบ column ไม่ได้ใช้ออก

This commit is contained in:
Net 2024-03-21 10:21:22 +07:00
parent 61b166cabc
commit 8b3398e7f7
6 changed files with 14 additions and 84 deletions

View file

@ -57,14 +57,6 @@ export class ProfileInsignia extends EntityBase {
})
page: string;
@Column({
nullable: true,
type: "datetime",
comment: "ลงวันที่",
default: null,
})
receiveDate: Date;
@Column({
nullable: true,
type: "datetime",
@ -136,13 +128,13 @@ export class ProfileInsignia extends EntityBase {
export class CreateProfileInsignia {
profileId: string | null;
isActive: boolean;
year: number;
no: string | null;
volume: string | null;
section: string | null;
page: string | null;
receiveDate: Date | null;
insigniaId: string;
dateAnnounce: Date | null;
issue: string | null;
@ -153,13 +145,12 @@ export class CreateProfileInsignia {
}
export type UpdateProfileInsignia = {
isActive?: boolean;
year?: number;
no?: string | null;
volume?: string | null;
section?: string | null;
page?: string | null;
receiveDate?: Date | null;
insigniaId?: string | null;
insigniaType?: string | null;
dateAnnounce?: Date | null;