diff options
| author | joonhoekim <26rote@gmail.com> | 2025-10-10 11:45:48 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-10-10 11:45:48 +0900 |
| commit | fed3dc0349be8faa5a94048e2ce2d96e432bf734 (patch) | |
| tree | 1c81e9b2e98d9869225a2897fd2a0d2c9398a556 /db/migrations_backup/0107_curly_thor.sql | |
| parent | 631b09172b48ec24c4f0131bc97017b87ddf0c47 (diff) | |
(김준회) chore: migrations_backup 경로 제거
Diffstat (limited to 'db/migrations_backup/0107_curly_thor.sql')
| -rw-r--r-- | db/migrations_backup/0107_curly_thor.sql | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrations_backup/0107_curly_thor.sql b/db/migrations_backup/0107_curly_thor.sql deleted file mode 100644 index 72b8e1ad..00000000 --- a/db/migrations_backup/0107_curly_thor.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE TABLE "tasks" ( - "id" varchar(30) PRIMARY KEY NOT NULL, - "code" varchar(128) DEFAULT concat('TASK-', to_char(nextval('tasks_code_seq'), 'FM0000')) NOT NULL, - "title" varchar(128), - "status" varchar(30) DEFAULT 'todo' NOT NULL, - "label" varchar(30) DEFAULT 'bug' NOT NULL, - "priority" varchar(30) DEFAULT 'low' NOT NULL, - "archived" boolean DEFAULT false NOT NULL, - "created_at" timestamp DEFAULT now() NOT NULL, - "updated_at" timestamp DEFAULT current_timestamp, - CONSTRAINT "tasks_code_unique" UNIQUE("code") -); |
