issue: assignment text field for admins
[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         updated    timestamptz NOT NULL DEFAULT now(),
9         author     text,
10         assign     text,
11         id         serial      NOT NULL PRIMARY KEY
12 );
13
14 CREATE TABLE comments (
15         page       text,
16         message    text,
17         created    timestamptz DEFAULT now(),
18         author     text,
19         id         serial      NOT NULL PRIMARY KEY
20 );