diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-26 09:57:24 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-26 09:57:24 +0000 |
| commit | 8b23b471638a155fd1bfa3a8c853b26d9315b272 (patch) | |
| tree | 47353e9dd342011cb2f1dcd24b09661707a8421b /db/schema/consent.ts | |
| parent | d62368d2b68d73da895977e60a18f9b1286b0545 (diff) | |
(대표님) 권한관리, 문서업로드, rfq첨부, SWP문서룰 등
(최겸) 입찰
Diffstat (limited to 'db/schema/consent.ts')
| -rw-r--r-- | db/schema/consent.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema/consent.ts b/db/schema/consent.ts index c67f4b7d..613e92f0 100644 --- a/db/schema/consent.ts +++ b/db/schema/consent.ts @@ -38,7 +38,7 @@ import { users } from "./users"; export const policyVersions = pgTable("policy_versions", { id: integer("id").primaryKey().generatedAlwaysAsIdentity(), policyType: policyTypeEnum("policy_type").notNull(), - locale: varchar("locale", { length: 10 }).notNull(), // ko, en + locale: varchar("locale", { length: 10 }).default("ko"), // ko, en version: varchar("version", { length: 20 }).notNull(), content: text("content").notNull(), effectiveDate: timestamp("effective_date", { withTimezone: true }).notNull(), |
