diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-05-25 11:32:49 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-05-25 11:32:49 -0700 |
commit | 0c72d673a9056c753503e6b2a8d4fbf3aba75a95 (patch) | |
tree | 94d9ef802da3f4fa0b3a00fd909a576fc63ed844 /design | |
parent | a39f9512f0efd3ec3e0a31df656e25dd3f824f6d (diff) |
Moderation workflow is.. working
Diffstat (limited to 'design')
-rw-r--r-- | design/database.sql | 3 |
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) |