Skip to content

CakePHP Migrations 1.6.6 released

Compare
Choose a tag to compare
@HavokInspiration HavokInspiration released this 02 Jan 21:34
  • Updated the phinx dependency to its latest version (0.6.5) (#291)
  • When baking a migration and making a field null using the ? option, it was not possible to specify a length for the field. This has been fixed (#290). You can now use a command similar to this :
bin/cake bake migration name:string?[50]
  • When baking a migration, column name that ends with _at will automatically be detected as datetime columns (#292)
  • When baking a diff, the column properties limit, default and null are always added to addColumn and changeColumn instructions : this prevents data-desynchronization (#293)