aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r--phpBB/db/mysql_schema.sql5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql
index 60ad9010b9..d49421ad5b 100644
--- a/phpBB/db/mysql_schema.sql
+++ b/phpBB/db/mysql_schema.sql
@@ -88,7 +88,6 @@ DROP TABLE IF EXISTS phpbb_config;
CREATE TABLE phpbb_config (
config_id int(10) NOT NULL auto_increment,
- selected int(2) DEFAULT '0' NOT NULL,
board_disable tinyint(1) DEFAULT '0' NOT NULL,
sitename varchar(100),
allow_html tinyint(1),
@@ -98,13 +97,15 @@ CREATE TABLE phpbb_config (
allow_namechange tinyint(1),
allow_theme_create tinyint(1),
allow_avatar_local tinyint(1) DEFAULT '0' NOT NULL,
+ allow_avatar_remote tinyint(1) DEFAULT '0' NOT NULL,
allow_avatar_upload tinyint(1) DEFAULT '0' NOT NULL,
override_themes tinyint(3),
posts_per_page int(10),
topics_per_page int(10),
hot_threshold int(10),
email_sig varchar(255),
- email_from varchar(100),
+ email_from varchar(100),
+ require_activation tinyint(1) DEFAULT '0' NOT NULL,
flood_interval int(4) NOT NULL,
avatar_filesize int(11) DEFAULT '6144' NOT NULL,
avatar_max_width smallint(6) DEFAULT '70' NOT NULL,