diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-27 14:21:45 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-27 14:21:45 +0000 |
commit | af35302cda24dfe6a3e7bfa6d742ad02c4d77969 (patch) | |
tree | c6d01a99f541c52721ef453a4dc38a0825c0bd08 /phpBB/db/postgres_schema.sql | |
parent | 9889b8ba53ca33e81b8731d52960bf5c5057be00 (diff) | |
download | forums-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/postgres_schema.sql')
-rw-r--r-- | phpBB/db/postgres_schema.sql | 3 |
1 files changed, 3 insertions, 0 deletions
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, |