nieuws: rename nieuws/replies widget to generic reply
[minimedit.git] / widget / comments.sql
1 CREATE TABLE comments (
2         page       text,
3         message    text,
4         created    timestamptz DEFAULT now(),
5         author     text,
6         id         serial      PRIMARY KEY
7 );