From af35302cda24dfe6a3e7bfa6d742ad02c4d77969 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 27 May 2001 14:21:45 +0000 Subject: [PATCH] Updates for near-future capabilities git-svn-id: file:///svn/phpbb/trunk@337 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/mysql_schema.sql | 5 ++++- phpBB/db/postgres_schema.sql | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 3ce52dcb5b..dcd4a7ffec 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -50,7 +50,8 @@ CREATE TABLE phpbb_config ( allow_bbcode tinyint(1), allow_sig tinyint(1), allow_namechange tinyint(1), - allow_theme_create int(10), + allow_theme_create tinyint(1), + allow_avatar_upload tinyint(1) DEFAULT '0' NOT NULL, override_themes tinyint(3), posts_per_page int(10), topics_per_page int(10), @@ -58,6 +59,8 @@ CREATE TABLE phpbb_config ( email_sig varchar(255), email_from varchar(100), flood_interval int(4) NOT NULL, + avatar_filesize int(11) DEFAULT '6144' NOT NULL, + avatar_path varchar(255) DEFAULT 'images/avatars' NOT NULL, default_theme int(11) DEFAULT '1' NOT NULL, default_lang varchar(255), default_dateformat varchar(14) DEFAULT 'd M Y H:i' NOT NULL, diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql index c5100bbeca..c3c27daf7e 100644 --- a/phpBB/db/postgres_schema.sql +++ b/phpBB/db/postgres_schema.sql @@ -97,6 +97,7 @@ CREATE TABLE phpbb_config ( allow_sig int2 NOT NULL, allow_namechange int2 NOT NULL, allow_theme_create int2 NOT NULL, + allow_avatar_upload int2 DEFAULT '0' NOT NULL, posts_per_page int2 NOT NULL, topics_per_page int2 NOT NULL, hot_threshold int2 NOT NULL, @@ -107,6 +108,8 @@ CREATE TABLE phpbb_config ( default_lang varchar(50) NOT NULL, system_timezone int4 NOT NULL, sys_template varchar(50) NOT NULL, + avatar_filesize int4 DEFAULT '6144' NOT NULL, + avatar_path varchar(255) DEFAULT 'images/avatars' NOT NULL, override_themes int2 NOT NULL, flood_interval int NOT NULL, selected int2 NOT NULL,