mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[feature/migrations] Correct depends_on
PHPBB3-9737
This commit is contained in:
@@ -17,7 +17,6 @@ class phpbb_db_migration_data_310_dev extends phpbb_db_migration
|
|||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'phpbb_db_migration_data_30x_11',
|
|
||||||
'phpbb_db_migration_data_310_extensions',
|
'phpbb_db_migration_data_310_extensions',
|
||||||
'phpbb_db_migration_data_310_style_update_p2',
|
'phpbb_db_migration_data_310_style_update_p2',
|
||||||
'phpbb_db_migration_data_310_timezone_p2',
|
'phpbb_db_migration_data_310_timezone_p2',
|
||||||
|
@@ -16,7 +16,7 @@ class phpbb_db_migration_data_310_extensions extends phpbb_db_migration
|
|||||||
|
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array('phpbb_db_migration_data_30x_11');
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function update_schema()
|
public function update_schema()
|
||||||
|
@@ -14,6 +14,11 @@ class phpbb_db_migration_data_310_reported_posts_display extends phpbb_db_migrat
|
|||||||
return $this->db_tools->sql_column_exists($this->table_prefix . 'reports', 'reported_post_enable_bbcode');
|
return $this->db_tools->sql_column_exists($this->table_prefix . 'reports', 'reported_post_enable_bbcode');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static public function depends_on()
|
||||||
|
{
|
||||||
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
||||||
|
}
|
||||||
|
|
||||||
public function update_schema()
|
public function update_schema()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@@ -16,7 +16,7 @@ class phpbb_db_migration_data_310_style_update_p1 extends phpbb_db_migration
|
|||||||
|
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array('phpbb_db_migration_data_30x_11');
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function update_data()
|
public function update_data()
|
||||||
|
@@ -16,7 +16,7 @@ class phpbb_db_migration_data_310_timezone extends phpbb_db_migration
|
|||||||
|
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
return array('phpbb_db_migration_data_30x_11');
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function update_schema()
|
public function update_schema()
|
||||||
|
Reference in New Issue
Block a user