aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql7
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 26b756b2db..3602843d05 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -73,10 +73,9 @@ CREATE TABLE phpbb_banlist (
ban_email varchar(50),
ban_start int(11),
ban_end int(11),
+ ban_exclude tinyint(1) DEFAULT '0' NOT NULL,
ban_reason varchar(255),
- PRIMARY KEY (ban_id),
- KEY ban_ip_user_id (ban_ip, ban_userid),
- KEY ban_email (ban_email)
+ PRIMARY KEY (ban_id)
);
@@ -95,7 +94,7 @@ CREATE TABLE phpbb_config (
# --------------------------------------------------------
#
-# Table structure for table 'phpbb_disallow' <- combine with banlist
+# Table structure for table 'phpbb_disallow'
#
CREATE TABLE phpbb_disallow (
disallow_id mediumint(8) UNSIGNED NOT NULL auto_increment,