aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migration/revert_with_dependency.php
blob: ca2c070e8cee68cb80523f29160cec2deb98fe30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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
{
	static public function depends_on()
	{
		return array('phpbb_dbal_migration_revert');
	}
}