diff options
Diffstat (limited to 'database.sql')
-rwxr-xr-x | database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/database.sql b/database.sql index 6826aa6f8..5b7c870df 100755 --- a/database.sql +++ b/database.sql @@ -222,6 +222,7 @@ CREATE TABLE IF NOT EXISTS `item` ( `deny_gid` mediumtext NOT NULL, `private` tinyint(1) NOT NULL DEFAULT '0', `pubmail` tinyint(1) NOT NULL DEFAULT '0', + `moderated` tinyint(1) NOT NULL DEFAULT '0', `visible` tinyint(1) NOT NULL DEFAULT '0', `starred` tinyint(1) NOT NULL DEFAULT '0', `bookmark` tinyint(1) NOT NULL DEFAULT '0', @@ -242,6 +243,7 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `created` (`created`), KEY `edited` (`edited`), KEY `received` (`received`), + KEY `moderated` (`moderated`), KEY `visible` (`visible`), KEY `starred` (`starred`), KEY `bookmark` (`bookmark`), |