Releases: bizley/yii2-migration
Releases · bizley/yii2-migration
3.6.0
2.9.0
3.5.0
2.8.0
3.4.0
Creating migrations for more than one table now forces the order in which they are created based on the foreign key dependencies. When tables are cross-referenced additional special foreign key migration is added at the end of the whole process.
New config option:
templateFileForeignKey
- template file for generating new foreign keys migrations (default@bizley/migration/views/create_fk_migration.php
)
2.7.0
Creating migrations for more than one table now forces the order in which they are created based on the foreign key dependencies. When tables are cross-referenced additional special foreign key migration is added at the end of the whole process.
New config option:
templateFileForeignKey
- template file for generating new foreign keys migrations (default@bizley/migration/views/create_fk_migration.php
)
3.3.0
- Deprecated method
removeMigrationTable()
has been removed. - Extracting column from migration with column data provided in form different than
ColumnSchemaBuilder
instance throws exception from now on. - Default column value accepts empty strings now.
- Default column value accepts arrays now.
- Unique indexes are not triggering unnecessary updates from now on.
2.6.0
- Deprecated method
removeMigrationTable()
has been removed. - Extracting column from migration with column data provided in form different than
ColumnSchemaBuilder
instance throws exception from now on. - Default column value accepts empty strings now.
- Default column value accepts arrays now.
- Unique indexes are not triggering unnecessary updates from now on.
3.2.0
- Option
excludeTables
has been added to exclude selected tables from scanning while runningcreate-all
andupdate-all
actions. Migration history table is added to excluded tables by default. upsert()
method has been added in dummyMigration
file to properly silence it while scanning migrations.- Some code style has been updated.
2.5.0
- Option
excludeTables
has been added to exclude selected tables from scanning while runningcreate-all
andupdate-all
actions. Migration history table is added to excluded tables by default. upsert()
method has been added in dummyMigration
file to properly silence it while scanning migrations.- Some code style has been updated.