diff options
Diffstat (limited to 'deploy/tags.sql')
-rw-r--r-- | deploy/tags.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/deploy/tags.sql b/deploy/tags.sql new file mode 100644 index 0000000..8186248 --- /dev/null +++ b/deploy/tags.sql @@ -0,0 +1,15 @@ +-- Deploy diary:tags to pg +-- requires: schema + +BEGIN; + +SET search_path to diary; + +CREATE TABLE 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; |