aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-03 00:31:34 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-03 00:31:34 +0000
commit6f25a26ba403eeaddc9e445d551d2fbc7478fcc6 (patch)
tree67327ef5e4ed7ede5342c682a857c37f5c14efe7 /phpBB/db
parentf38726fae2308ab06174fb10658c0ee370df30e0 (diff)
downloadforums-6f25a26ba403eeaddc9e445d551d2fbc7478fcc6.tar
forums-6f25a26ba403eeaddc9e445d551d2fbc7478fcc6.tar.gz
forums-6f25a26ba403eeaddc9e445d551d2fbc7478fcc6.tar.bz2
forums-6f25a26ba403eeaddc9e445d551d2fbc7478fcc6.tar.xz
forums-6f25a26ba403eeaddc9e445d551d2fbc7478fcc6.zip
Added disable board and some avatar related config stuff
git-svn-id: file:///svn/phpbb/trunk@538 89ea8834-ac86-4346-8a33-228a782c2dd0
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,