diff options
| author | Cullen Walsh <ckwalsh@cullenwalsh.com> | 2011-07-04 17:19:18 -0700 |
|---|---|---|
| committer | Cullen Walsh <ckwalsh@cullenwalsh.com> | 2012-03-18 22:22:41 +0000 |
| commit | 3963b39634225a68687cf1b817a47ae1eeb6ac79 (patch) | |
| tree | c99328d6ea8135beaaedbb5f22a2c14e744dd67f /phpBB/install/database_update.php | |
| parent | 48e61b1b45655b38660740abb0de9704234af849 (diff) | |
| download | forums-3963b39634225a68687cf1b817a47ae1eeb6ac79.tar forums-3963b39634225a68687cf1b817a47ae1eeb6ac79.tar.gz forums-3963b39634225a68687cf1b817a47ae1eeb6ac79.tar.bz2 forums-3963b39634225a68687cf1b817a47ae1eeb6ac79.tar.xz forums-3963b39634225a68687cf1b817a47ae1eeb6ac79.zip | |
[feature/avatars] Making schema changes for db tables
These schema changes make manual column chaning uncessesary.
PHPBB3-10018
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 843e8c2f23..ba6d5d34e2 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1092,6 +1092,10 @@ function database_update_info() 'change_columns' => array( GROUPS_TABLE => array( 'group_legend' => array('UINT', 0), + 'group_avatar_type' => array('VCHAR:32', 0), + ), + USERS_TABLE => array( + 'user_avatar_type' => array('VCHAR:32', 0), ), ), 'drop_columns' => array( |
