aboutsummaryrefslogtreecommitdiff
path: root/deploy/articles.sql
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/articles.sql')
-rw-r--r--deploy/articles.sql14
1 files changed, 0 insertions, 14 deletions
diff --git a/deploy/articles.sql b/deploy/articles.sql
deleted file mode 100644
index 08fcb5e..0000000
--- a/deploy/articles.sql
+++ /dev/null
@@ -1,14 +0,0 @@
--- Deploy kakeibo:articles to pg
--- requires: schema
-
-BEGIN;
-
-CREATE TABLE kakeibo.articles (
- id SERIAL PRIMARY KEY,
- location TEXT UNIQUE,
- title TEXT NOT NULL,
- created_at TIMESTAMP NOT NULL DEFAULT NOW(),
- updated_at TIMESTAMP NOT NULL DEFAULT NOW()
-);
-
-COMMIT;