aboutsummaryrefslogtreecommitdiff
path: root/deploy/articles.sql
blob: 72f4a74a68d0cb07b1db8f935b4714e76fb7f814 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- Deploy diary:articles to pg
-- requires: schema

BEGIN;

SET search_path to diary;

CREATE TABLE articles(
  article_id UUID PRIMARY KEY,
  timestamp TIMESTAMPTZ NOT NULL,
  hash VARCHAR(64) NOT NULL,
  title VARCHAR NOT NULL,
  body TEXT NOT NULL
);

COMMIT;