diff options
author | Marc Alexander <admin@m-a-styles.de> | 2012-11-30 14:36:18 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2012-11-30 14:36:18 +0100 |
commit | 562ebe5c12b8a238b94a63ba53b694af4d061bc9 (patch) | |
tree | eb6b208290efd1386a684cc61fff2389ca770f45 /phpBB/install/schemas/mysql_41_schema.sql | |
parent | f4ad60e2cf18771200d99bc953449d6229a74818 (diff) | |
download | forums-562ebe5c12b8a238b94a63ba53b694af4d061bc9.tar forums-562ebe5c12b8a238b94a63ba53b694af4d061bc9.tar.gz forums-562ebe5c12b8a238b94a63ba53b694af4d061bc9.tar.bz2 forums-562ebe5c12b8a238b94a63ba53b694af4d061bc9.tar.xz forums-562ebe5c12b8a238b94a63ba53b694af4d061bc9.zip |
[feature/avatars] Unify size of avatar_type
Previously it was set to 255 in one file while it was 32 in other files.
As the size of 32 is rather low this was increased to 255.
PHPBB3-10018
Diffstat (limited to 'phpBB/install/schemas/mysql_41_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_41_schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/mysql_41_schema.sql b/phpBB/install/schemas/mysql_41_schema.sql index 7823c91fb8..5c27538f86 100644 --- a/phpBB/install/schemas/mysql_41_schema.sql +++ b/phpBB/install/schemas/mysql_41_schema.sql @@ -317,7 +317,7 @@ CREATE TABLE phpbb_groups ( group_desc_uid varchar(8) DEFAULT '' NOT NULL, group_display tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, group_avatar varchar(255) DEFAULT '' NOT NULL, - group_avatar_type varchar(32) DEFAULT '' NOT NULL, + group_avatar_type varchar(255) DEFAULT '' NOT NULL, group_avatar_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, group_avatar_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, group_rank mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, @@ -919,7 +919,7 @@ CREATE TABLE phpbb_users ( user_allow_massemail tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, user_options int(11) UNSIGNED DEFAULT '230271' NOT NULL, user_avatar varchar(255) DEFAULT '' NOT NULL, - user_avatar_type varchar(32) DEFAULT '' NOT NULL, + user_avatar_type varchar(255) DEFAULT '' NOT NULL, user_avatar_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, user_avatar_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, user_sig mediumtext NOT NULL, |