aboutsummaryrefslogtreecommitdiff
path: root/deploy/articles.sql
blob: 62505ce8265e49e1477b5fa7fe94a7c17b8a7997 (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 TEXT NOT NULL,
  body TEXT NOT NULL
);

COMMIT;