Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
da4f856a
Commit
da4f856a
authored
Jan 16, 2006
by
Dries
Browse files
- Patch
#44964
by Eaton: remove comment moderation tables.
parent
efd634ac
Changes
2
Show whitespace changes
Inline
Side-by-side
database/database.mysql
View file @
da4f856a
...
...
@@ -390,40 +390,6 @@ CREATE TABLE menu (
PRIMARY KEY (mid)
) 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'
--
...
...
database/database.pgsql
View file @
da4f856a
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment