aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migration/revert_with_dependency.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dbal/migration/revert_with_dependency.php')
-rw-r--r--tests/dbal/migration/revert_with_dependency.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/dbal/migration/revert_with_dependency.php b/tests/dbal/migration/revert_with_dependency.php
new file mode 100644
index 0000000000..ca2c070e8c
--- /dev/null
+++ b/tests/dbal/migration/revert_with_dependency.php
@@ -0,0 +1,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');
+ }
+}