nieuws/replies: read contents from database
[minimedit.git] / widget / comments.sql
diff --git a/widget/comments.sql b/widget/comments.sql
new file mode 100644 (file)
index 0000000..ff79744
--- /dev/null
@@ -0,0 +1,7 @@
+CREATE TABLE comments (
+       page       text,
+       message    text,
+       created    timestamptz DEFAULT now(),
+       author     text,
+       id         serial      PRIMARY KEY
+);