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/develop/create_schema_files.php | |
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/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 1d03a5b06e..895a945e4e 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -1168,7 +1168,7 @@ function get_schema_struct() 'group_desc_uid' => array('VCHAR:8', ''), 'group_display' => array('BOOL', 0), 'group_avatar' => array('VCHAR', ''), - 'group_avatar_type' => array('VCHAR:32', ''), + 'group_avatar_type' => array('VCHAR:255', ''), 'group_avatar_width' => array('USINT', 0), 'group_avatar_height' => array('USINT', 0), 'group_rank' => array('UINT', 0), @@ -1823,7 +1823,7 @@ function get_schema_struct() 'user_allow_massemail' => array('BOOL', 1), 'user_options' => array('UINT:11', 230271), 'user_avatar' => array('VCHAR', ''), - 'user_avatar_type' => array('VCHAR:32', ''), + 'user_avatar_type' => array('VCHAR:255', ''), 'user_avatar_width' => array('USINT', 0), 'user_avatar_height' => array('USINT', 0), 'user_sig' => array('MTEXT_UNI', ''), |