X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/c824b14c0f6fb372ca4e72fe244b3aade6c29541..f547127c637332119b42329ca78d0e1a659d9739:/widget/comments.sql diff --git a/widget/comments.sql b/widget/comments.sql index 924c136..3dc9f07 100644 --- a/widget/comments.sql +++ b/widget/comments.sql @@ -4,9 +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 ); @@ -17,3 +18,12 @@ 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 +);