reply: omit empty messages like issue page
[minimedit.git] / widget / comments.sql
index 8a0655826101a8147c5e3e26984008285fe60a1f..2a4993b056eb5062d7bfd0e7a10f7301493a394e 100644 (file)
@@ -18,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
+);