aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql_schema.sql
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-27 14:21:45 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-27 14:21:45 +0000
commitaf35302cda24dfe6a3e7bfa6d742ad02c4d77969 (patch)
treec6d01a99f541c52721ef453a4dc38a0825c0bd08 /phpBB/db/mysql_schema.sql
parent9889b8ba53ca33e81b8731d52960bf5c5057be00 (diff)
downloadforums-af35302cda24dfe6a3e7bfa6d742ad02c4d77969.tar
forums-af35302cda24dfe6a3e7bfa6d742ad02c4d77969.tar.gz
forums-af35302cda24dfe6a3e7bfa6d742ad02c4d77969.tar.bz2
forums-af35302cda24dfe6a3e7bfa6d742ad02c4d77969.tar.xz
forums-af35302cda24dfe6a3e7bfa6d742ad02c4d77969.zip
Updates for near-future capabilities
git-svn-id: file:///svn/phpbb/trunk@337 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r--phpBB/db/mysql_schema.sql5
1 files changed, 4 insertions, 1 deletions
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,