From a421f8d0f6ecfabf50a22508857821e6978e81fb Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:42:12 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B8=A5=E0=B8=9A=20isActive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/ProfileHonorHistory.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/entities/ProfileHonorHistory.ts b/src/entities/ProfileHonorHistory.ts index 4c4c5304..a4cea3dc 100644 --- a/src/entities/ProfileHonorHistory.ts +++ b/src/entities/ProfileHonorHistory.ts @@ -5,12 +5,6 @@ import { ProfileHonor } from "./ProfileHonor"; @Entity("profileHonorHistory") export class ProfileHonorHistory extends EntityBase { - @Column({ - comment: "สถานะการใช้งาน", - default: false, - }) - isActive: boolean; - @Column({ nullable: true, length: 2000, @@ -72,9 +66,6 @@ export class ProfileHonorHistory extends EntityBase { } export class CreateProfileHonorHistory { - @Column() - isActive: boolean; - @Column() detail: string | null;