mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 04:23:38 +01:00
17 lines
305 B
PHP
17 lines
305 B
PHP
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* @package testing
|
||
|
* @copyright (c) 2011 phpBB Group
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
class phpbb_dbal_migration_revert_with_dependency extends phpbb_db_migration
|
||
|
{
|
||
|
function depends_on()
|
||
|
{
|
||
|
return array('phpbb_dbal_migration_revert');
|
||
|
}
|
||
|
}
|