2.0.0
- Upgraded phinx to version 0.10.3
- Requires CakePHP >= 3.6
Important
Since the new version of phinx is a breaking version, you are highly encouraged to take a snapshot of the database state right after upgrading with the following steps
- Run all your pending migrations
bin/cake migrate
- Upgrade this plugin with
composer require cakephp/migrations=^2.0.0
- Take a snapshot of the database
bin/cake bake migration_snapshot AfterUpgradeMigrations
- Mark the snapshot as already applied
bin/cake migrations mark_migrated
. Make sure this migration is also marked as migrated in your other environments.
If you don't want through the process of updating the code in old migrations, it is recommended to delete any migration files previous to the latest snapshot.