summaryrefslogtreecommitdiff
path: root/db/schema/tasks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema/tasks.ts')
-rw-r--r--db/schema/tasks.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/db/schema/tasks.ts b/db/schema/tasks.ts
index fc4000bb..46ca9a67 100644
--- a/db/schema/tasks.ts
+++ b/db/schema/tasks.ts
@@ -10,9 +10,10 @@ export const tasks = pgTable("tasks", {
code: varchar("code", { length: 128 })
.notNull()
.unique()
- .default(
- sql`concat('TASK-', to_char(nextval('tasks_code_seq'), 'FM0000'))`
- )
+ // .default(
+ // sql`concat('TASK-', to_char(nextval('tasks_code_seq'), 'FM0000'))`
+ // )
+ // 0429 db 마이그레이션 관련 수정
,
title: varchar("title", { length: 128 }),
status: varchar("status", {