mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17486] Fix SQL error on phpBB v.3.0 to v.3.3 upgrade
Ensure v310/bot_update runs after v310/avatars migration which changes user_avatar_type column type from tinyint(2) to varchar(255). PHPBB-17486
This commit is contained in:
parent
64dd8b668e
commit
98a8999283
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,10 @@ class bot_update extends \phpbb\db\migration\migration
|
||||||
{
|
{
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array('\phpbb\db\migration\data\v310\rc6');
|
return array(
|
||||||
|
'\phpbb\db\migration\data\v310\rc6',
|
||||||
|
'\phpbb\db\migration\data\v310\avatars',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function update_data()
|
public function update_data()
|
||||||
|
|
Loading…
Add table
Reference in a new issue