X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/aee71926fef0a65076c0c40b4c3280506dec5aba..05c560470887c86a30c82360d7be5caf0de1baa4:/widget/comments.sql diff --git a/widget/comments.sql b/widget/comments.sql index 3a5fcfc..b805a2a 100644 --- a/widget/comments.sql +++ b/widget/comments.sql @@ -2,7 +2,6 @@ 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(), @@ -13,6 +12,7 @@ CREATE TABLE issues ( CREATE TABLE comments ( page text, + raw text, message text, created timestamptz DEFAULT now(), author text, @@ -30,6 +30,4 @@ CREATE TABLE journal ( 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 );