mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-13 20:28:44 +01:00
[ticket/11700] Fix number class names in 3.0.x migrations
PHPBB3-11700
This commit is contained in:
parent
e1239b455f
commit
ee735685ac
@ -7,13 +7,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class local_url_bbcode extends \phpbb\db\migration\migration
|
||||
{
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_12_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_12_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_1_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_1_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_10 extends \phpbb\db\migration\migration
|
||||
class release_3_0_10 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_10 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_10_rc3');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_10_rc3');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_10_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_10_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_10_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_9');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_9');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_10_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_10_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_10_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_10_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_10_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_10_rc3 extends \phpbb\db\migration\migration
|
||||
class release_3_0_10_rc3 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_10_rc3 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_10_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_10_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_11 extends \phpbb\db\migration\migration
|
||||
class release_3_0_11 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_11 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_11_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_11_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_11_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_11_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_11_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_10');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_10');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_11_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_11_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_11_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_11_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_11_rc1');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,11 +7,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
/** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.12-RC1 **/
|
||||
|
||||
class 3_0_12_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_12_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -20,7 +20,7 @@ class 3_0_12_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_11');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_11');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_1_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_1_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_2_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_2_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_2_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_2_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_2_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_2_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_2_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_2_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_2_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_2_rc1');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_3 extends \phpbb\db\migration\migration
|
||||
class release_3_0_3 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_3 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_3_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_3_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_3_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_3_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_3_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_2');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_4 extends \phpbb\db\migration\migration
|
||||
class release_3_0_4 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_4 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_4_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_4_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_4_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_4_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_4_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_3');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_3');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_5 extends \phpbb\db\migration\migration
|
||||
class release_3_0_5 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_5 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_5_rc1part2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_5_rc1part2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_5_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_5_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_5_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_4');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_4');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_5_rc1part2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_5_rc1part2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_5_rc1part2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_5_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_5_rc1');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_6 extends \phpbb\db\migration\migration
|
||||
class release_3_0_6 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_6 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_6_rc4');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_6_rc4');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_6_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_6_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_6_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_5');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_5');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_6_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_6_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_6_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_6_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_6_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_6_rc3 extends \phpbb\db\migration\migration
|
||||
class release_3_0_6_rc3 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_6_rc3 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_6_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_6_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_6_rc4 extends \phpbb\db\migration\migration
|
||||
class release_3_0_6_rc4 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_6_rc4 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_6_rc3');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_6_rc3');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_7 extends \phpbb\db\migration\migration
|
||||
class release_3_0_7 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_7 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_7_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_7_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_7_pl1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_7_pl1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_7_pl1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_7');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_7');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_7_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_7_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_7_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_6');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_6');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_7_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_7_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_7_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_7_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_7_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_8 extends \phpbb\db\migration\migration
|
||||
class release_3_0_8 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_8 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_8_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_8_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_8_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_8_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_8_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_7_pl1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_7_pl1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_9 extends \phpbb\db\migration\migration
|
||||
class release_3_0_9 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_9 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_9_rc4');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_9_rc4');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_9_rc1 extends \phpbb\db\migration\migration
|
||||
class release_3_0_9_rc1 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_9_rc1 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_8');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_8');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_9_rc2 extends \phpbb\db\migration\migration
|
||||
class release_3_0_9_rc2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_9_rc2 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_9_rc1');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_9_rc1');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_9_rc3 extends \phpbb\db\migration\migration
|
||||
class release_3_0_9_rc3 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_9_rc3 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_9_rc2');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_9_rc2');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
@ -7,9 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\datax;
|
||||
namespace phpbb\db\migration\data\v30x;
|
||||
|
||||
class 3_0_9_rc4 extends \phpbb\db\migration\migration
|
||||
class release_3_0_9_rc4 extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@ -18,7 +18,7 @@ class 3_0_9_rc4 extends \phpbb\db\migration\migration
|
||||
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_30x_3_0_9_rc3');
|
||||
return array('\phpbb\db\migration\data\v30x\release_3_0_9_rc3');
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
|
Loading…
x
Reference in New Issue
Block a user