aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db')
-rw-r--r--phpBB/db/mysql_schema.sql5
-rw-r--r--phpBB/db/postgres_schema.sql4
2 files changed, 5 insertions, 4 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,
diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql
index c11df794b0..1df9c6ea6c 100644
--- a/phpBB/db/postgres_schema.sql
+++ b/phpBB/db/postgres_schema.sql
@@ -84,8 +84,7 @@ CREATE TABLE phpbb_categories (
-------------------------------------------------------- */
CREATE TABLE phpbb_config (
config_id int2 NOT NULL,
- selected int2 NOT NULL,
- disable_board int2 DEFAULT '0' NOT NULL,
+ board_disable int2 DEFAULT '0' NOT NULL,
sitename varchar(100) NOT NULL,
allow_html int2 NOT NULL,
allow_bbcode int2 NOT NULL,
@@ -101,6 +100,7 @@ CREATE TABLE phpbb_config (
hot_threshold int2 NOT NULL,
email_sig varchar(255) NOT NULL,
email_from varchar(100) NOT NULL,
+ require_activation int2 DEFAULT '0' NOT NULL,
default_theme int4 NOT NULL,
default_dateformat varchar(20) NOT NULL,
default_lang varchar(50) NOT NULL,