issue: append and ignore page titles in links
[minimedit.git] / widget / comments.sql
1 CREATE TABLE issues (
2         page       text        NOT NULL DEFAULT 'issue',
3         link       text,
4         subject    text,
5         body       text,
6         created    timestamptz          DEFAULT now(),
7         closed     timestamptz          DEFAULT now(),
8         author     text,
9         id         serial      NOT NULL PRIMARY KEY
10 );
11
12 CREATE TABLE comments (
13         page       text,
14         message    text,
15         created    timestamptz DEFAULT now(),
16         author     text,
17         id         serial      NOT NULL PRIMARY KEY
18 );