X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/55cb3025c5506ec7faaa1818a4d8161aaad19c27..af5d5f4037aabc493afa60a5394ab3f8f6134917:/widget/comments.sql diff --git a/widget/comments.sql b/widget/comments.sql index 5e33716..3a5fcfc 100644 --- a/widget/comments.sql +++ b/widget/comments.sql @@ -4,8 +4,10 @@ CREATE TABLE issues ( subject text, body text, created timestamptz DEFAULT now(), - closed timestamptz DEFAULT now(), + closed timestamptz, + updated timestamptz NOT NULL DEFAULT now(), author text, + assign text, id serial NOT NULL PRIMARY KEY ); @@ -16,3 +18,18 @@ CREATE TABLE comments ( author text, 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 +);