Your migration classes that previously used to extend Doctrine\DBAL\Migrations\AbstractMigration
now need to extend
Doctrine\Migrations\AbstractMigration
instead. The Doctrine\DBAL\Migrations\AbstractMigration
class will be
deprecated in the 1.8.0
release to prepare for the BC break.
The Doctrine\DBAL\Migrations\MigrationsVersion
class is no longer available: please refrain from checking the Migrations version at runtime.
To make the name more clear and to differentiate from the AbstractMigration
class, Migration
was renamed to Migrator
.
The method getName()
was defined and it's implementation would change the order in which the migration would be processed.
It would cause discrepancies between the file order in a file browser and the order of execution of the migrations.
The getName()
method as been removed | set final and new getDescription()
method has been added.
The goal of this method is to be able to provide context for the migration.
This context is shown for the last migrated migration when the status command is called.
The --write-sql
option would only output sql contained in the migration and would not update the table containing the migrated migrations.
That option now also output the sql queries necessary to update the table containing the state of the migrations. If you want to go back to the previous behavior just make a request on the bug tracker as for now the need for it is not very clear.
MigrationsVersion::VERSION
used to be a property.
The returned value was fanciful.
It is now a a function so that a different value can be automatically send back if it's a modified version that's used. The returned value is now the git tag. The tag is in lowercase as the other doctrine projects.