diff options
| author | joonhoekim <26rote@gmail.com> | 2025-07-02 04:48:14 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-07-02 04:48:14 +0000 |
| commit | 51e496b704f819a6c705fce0553d36be973ce1dd (patch) | |
| tree | 96c9abbf143f9dfa5e2f4bc5091a48c69a2ff98f /db/schema/SOAP | |
| parent | a42873419d14652d3639d2ae02d2ea54653b4749 (diff) | |
(김준회) 협력사관리 - 구매 벤더 기본정보 FIX
Diffstat (limited to 'db/schema/SOAP')
| -rw-r--r-- | db/schema/SOAP/soap.ts | 4 |
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(), |
