summaryrefslogtreecommitdiff
path: root/db/schema/SOAP
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-07-02 04:48:14 +0000
committerjoonhoekim <26rote@gmail.com>2025-07-02 04:48:14 +0000
commit51e496b704f819a6c705fce0553d36be973ce1dd (patch)
tree96c9abbf143f9dfa5e2f4bc5091a48c69a2ff98f /db/schema/SOAP
parenta42873419d14652d3639d2ae02d2ea54653b4749 (diff)
(김준회) 협력사관리 - 구매 벤더 기본정보 FIX
Diffstat (limited to 'db/schema/SOAP')
-rw-r--r--db/schema/SOAP/soap.ts4
1 files changed, 2 insertions, 2 deletions
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(),