summaryrefslogtreecommitdiff
path: root/design/database.sql
diff options
context:
space:
mode:
Diffstat (limited to 'design/database.sql')
-rw-r--r--design/database.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/design/database.sql b/design/database.sql
index 08bcc54..6bb34da 100644
--- a/design/database.sql
+++ b/design/database.sql
@@ -52,7 +52,8 @@ CREATE TABLE post (
source_id INTEGER UNSIGNED NOT NULL,
stage ENUM('verification',
'moderation',
- 'approved') NOT NULL DEFAULT 'verification',
+ 'approved',
+ 'rejected') NOT NULL DEFAULT 'verification',
PRIMARY KEY(id),
UNIQUE KEY(secretid)