-- 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;