From 8fdc5179b1d5ba075c74f28337f1c83e28240ed2 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 11 Mar 2024 01:04:48 +0900 Subject: Add table manage diary article tags. --- deploy/article_tags.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 deploy/article_tags.sql (limited to 'deploy') 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; -- cgit v1.2.3