summaryrefslogtreecommitdiff
path: root/database/database.mysql
diff options
context:
space:
mode:
Diffstat (limited to 'database/database.mysql')
-rw-r--r--database/database.mysql34
1 files changed, 0 insertions, 34 deletions
diff --git a/database/database.mysql b/database/database.mysql
index 131b43940..635ae5046 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -391,40 +391,6 @@ CREATE TABLE menu (
) TYPE=MyISAM;
--
--- Table structure for table 'moderation_filters'
---
-
-CREATE TABLE moderation_filters (
- fid int(10) unsigned NOT NULL auto_increment,
- filter varchar(255) NOT NULL default '',
- minimum smallint(6) NOT NULL default '0',
- PRIMARY KEY (fid)
-) TYPE=MyISAM;
-
---
--- Table structure for table 'moderation_roles'
---
-
-CREATE TABLE moderation_roles (
- rid int(10) unsigned NOT NULL default '0',
- mid int(10) unsigned NOT NULL default '0',
- value tinyint(4) NOT NULL default '0',
- KEY idx_rid (rid),
- KEY idx_mid (mid)
-) TYPE=MyISAM;
-
---
--- Table structure for table 'moderation_votes'
---
-
-CREATE TABLE moderation_votes (
- mid int(10) unsigned NOT NULL auto_increment,
- vote varchar(255) default NULL,
- weight tinyint(4) NOT NULL default '0',
- PRIMARY KEY (mid)
-) TYPE=MyISAM;
-
---
-- Table structure for table 'node'
--