blob: d66bca580137f1a3d7964610c90cb7be70c87866 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- 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
);
COMMIT;
|