summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql33
1 files changed, 0 insertions, 33 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index 2bb1095d0..728f99962 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -389,39 +389,6 @@ CREATE TABLE menu (
type smallint NOT NULL default '0',
PRIMARY KEY (mid)
);
---
--- Table structure for table 'moderation_filters'
---
-
-CREATE TABLE moderation_filters (
- fid SERIAL,
- filter varchar(255) NOT NULL default '',
- minimum smallint NOT NULL default '0',
- PRIMARY KEY (fid)
-);
-
---
--- Table structure for table 'moderation_roles'
---
-
-CREATE TABLE moderation_roles (
- rid integer NOT NULL default '0',
- mid integer NOT NULL default '0',
- value smallint NOT NULL default '0'
-);
-CREATE INDEX moderation_roles_rid_idx ON moderation_roles(rid);
-CREATE INDEX moderation_roles_mid_idx ON moderation_roles(mid);
-
---
--- Table structure for table 'moderation_votes'
---
-
-CREATE TABLE moderation_votes (
- mid SERIAL,
- vote varchar(255) default NULL,
- weight smallint NOT NULL default '0',
- PRIMARY KEY (mid)
-);
--
-- Table structure for node