X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/55cb3025c5506ec7faaa1818a4d8161aaad19c27..10356b51f95050d0aec0cd1807d5ba1ec46d475a:/widget/comments.sql diff --git a/widget/comments.sql b/widget/comments.sql index 5e33716..2a4993b 100644 --- a/widget/comments.sql +++ b/widget/comments.sql @@ -5,7 +5,9 @@ CREATE TABLE issues ( body text, created timestamptz DEFAULT now(), closed timestamptz DEFAULT now(), + updated timestamptz NOT NULL DEFAULT now(), author text, + assign text, id serial NOT NULL PRIMARY KEY ); @@ -16,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 +);