ff797445ff1f81631afd74855ce0a2c99ac24b90
[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 );