X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/0cc6251412d85492cbd0af0d50176d3c70c25311..ae288f251dc7521badc3647cb5c3c8d9639b7fee:/widget/comments.sql diff --git a/widget/comments.sql b/widget/comments.sql index ff79744..3a5fcfc 100644 --- a/widget/comments.sql +++ b/widget/comments.sql @@ -1,7 +1,35 @@ +CREATE TABLE issues ( + page text NOT NULL DEFAULT 'issue', + link text, + subject text, + body text, + created timestamptz DEFAULT now(), + closed timestamptz, + updated timestamptz NOT NULL DEFAULT now(), + author text, + assign text, + id serial NOT NULL PRIMARY KEY +); + CREATE TABLE comments ( page text, message text, created timestamptz DEFAULT now(), author text, - id serial PRIMARY KEY + id serial NOT NULL PRIMARY KEY +); + +CREATE TABLE journal ( + comment_id integer NOT NULL REFERENCES comments (id), + property text NOT NULL DEFAULT 'attr', + col text NOT NULL, + old_value text, + value text, + id serial NOT NULL PRIMARY KEY +); + +CREATE OR REPLACE VIEW messages AS ( + SELECT *, regexp_replace(page, '.*/', '')::int issue FROM comments + UNION ALL + SELECT concat(page,'/',id), body, created, author, NULL, id FROM issues );