diff options
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 26a28e1944..ed4be29726 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -116,6 +116,7 @@ CREATE TABLE phpbb_config ( allow_sig tinyint(1), allow_namechange tinyint(1), allow_theme_create tinyint(1), + allow_avatar_local tinyint(1) DEFAULT '0' NOT NULL, allow_avatar_upload tinyint(1) DEFAULT '0' NOT NULL, override_themes tinyint(3), posts_per_page int(10), @@ -125,6 +126,8 @@ CREATE TABLE phpbb_config ( email_from varchar(100), flood_interval int(4) NOT NULL, avatar_filesize int(11) DEFAULT '6144' NOT NULL, + avatar_max_width smallint(6) DEFAULT '70' NOT NULL, + avatar_max_height smallint(6) DEFAULT '70' NOT NULL, avatar_path varchar(255) DEFAULT 'images/avatars' NOT NULL, default_theme int(11) DEFAULT '1' NOT NULL, default_lang varchar(255), |