aboutsummaryrefslogtreecommitdiff
path: root/deploy
diff options
context:
space:
mode:
Diffstat (limited to 'deploy')
-rw-r--r--deploy/article_tags.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/deploy/article_tags.sql b/deploy/article_tags.sql
new file mode 100644
index 0000000..617dcdc
--- /dev/null
+++ b/deploy/article_tags.sql
@@ -0,0 +1,15 @@
+-- Deploy diary:article_tags to pg
+-- requires: schema
+
+BEGIN;
+
+SET search_path to diary;
+
+CREATE TABLE article_tags(
+ id UUID PRIMARY KEY,
+ name TEXT UNIQUE NOT NULL,
+ created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
+ updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
+);
+
+COMMIT;