From 51e496b704f819a6c705fce0553d36be973ce1dd Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 2 Jul 2025 04:48:14 +0000 Subject: (김준회) 협력사관리 - 구매 벤더 기본정보 FIX MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/SOAP/soap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'db/schema/SOAP') diff --git a/db/schema/SOAP/soap.ts b/db/schema/SOAP/soap.ts index 7a16b50a..c3e7a0b5 100644 --- a/db/schema/SOAP/soap.ts +++ b/db/schema/SOAP/soap.ts @@ -8,8 +8,8 @@ export const soapLogs = soapSchema.table("soap_logs", { direction: varchar({ length: 20 }).notNull(), system: varchar({ length: 50 }).notNull(), interface: varchar({ length: 100 }).notNull(), - startedAt: timestamp().notNull(), - endedAt: timestamp(), + startedAt: timestamp({ withTimezone: true }).notNull(), + endedAt: timestamp({ withTimezone: true }), isSuccess: boolean().default(false).notNull(), requestData: text(), responseData: text(), -- cgit v1.2.3