aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migration/fail.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [ticket/12349] Update license header in several new filesJoas Schilling2014-04-031-1/+1
| | | | PHPBB3-12349
* [ticket/11700] Move all recent code to namespacesNils Adermann2013-09-161-1/+1
| | | | PHPBB3-11700
* [feature/migrations] Make the test depends_on methods staticNathan Guse2013-01-101-5/+0
| | | | PHPBB3-11318
* [feature/migrations] Store depends on in the database (serialized)Nathan Guse2013-01-101-0/+46
This is required so that when migrations are reverted we can check through all installed migrations and make sure that all dependencies are handled properly and so that we are only required to load the migrations files that could be dependent on the ones installed. I believe in normal proper use the old way might have worked, but in case something happens and an unrelated migration file is installed, but cannot be loaded, this makes sure we do not stop everything unless we absolutely must (one of those files is dependent on something we want to revert). PHPBB3-9737