mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/14453] Add missing dependency in the text_reparser migration
PHPBB3-14453
This commit is contained in:
parent
013d4d4633
commit
3846b6a6e3
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,10 @@ class text_reparser extends \phpbb\db\migration\container_aware_migration
|
||||||
{
|
{
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array('\phpbb\db\migration\data\v310\contact_admin_form');
|
return array(
|
||||||
|
'\phpbb\db\migration\data\v310\contact_admin_form',
|
||||||
|
'\phpbb\db\migration\data\v320\allowed_schemes_links',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function effectively_installed()
|
public function effectively_installed()
|
||||||
|
|
Loading…
Add table
Reference in a new issue