From 7eaf9885e28ac03886af892285bb6162afe256c8 Mon Sep 17 00:00:00 2001 From: meusinfirmary Date: Tue, 25 Mar 2025 03:16:16 +0700 Subject: [PATCH] update --- src/entity/remit_partner_users.ts | 2 +- src/types/status.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/entity/remit_partner_users.ts b/src/entity/remit_partner_users.ts index 8b4a726..98a6344 100644 --- a/src/entity/remit_partner_users.ts +++ b/src/entity/remit_partner_users.ts @@ -54,7 +54,7 @@ export class RemitPartnerUser { nullable: false, length: 64, }) - status: Status; + status: String; @Column() @CreateDateColumn() diff --git a/src/types/status.ts b/src/types/status.ts index 7408c75..33589e3 100644 --- a/src/types/status.ts +++ b/src/types/status.ts @@ -1,4 +1,4 @@ export enum Status { - "Active" = "Y", - "Not Active" = "N" -}; \ No newline at end of file + "Active" = "Y", + "Not Active" = "N", +}