All Versions
30
Latest Version
Avg Release Cycle
78 days
Latest Release
971 days ago

Changelog History
Page 2

  • v1.1.1 Changes

    September 12, 2019

    ๐Ÿ”„ Changed

    • freezed symfony/console to >=3.1 =4.0 <4.3.4

    โž• Added

    • ๐Ÿ‘Œ support for nette/neon 3.0
  • v1.1.0 Changes

    February 11, 2019

    โž• Added

  • v1.0.0 Changes

    June 20, 2018

    ๐Ÿ”„ Changed

    • โž• added return type (:void) for up() and down() methods in AbstractMigration (BC Break - Fix: add return type :void to all migrations)
    • replaced nette/finder with symfony/finder
    • PDOAdapter::execute splitted into PDOAdapter::execute(PDOStatement $sql) and PDOAdapter::query(string $sql)

    โœ‚ Removed

    • โœ‚ removed support for sqlite adapter
    • โœ‚ removed nette/utils

    ๐Ÿ›  Fixed

    • typehint for fetch method
  • v0.13.0 Changes

    March 14, 2018

    ๐Ÿ”„ Changed

    • second parameter of methods fetchAll and fetch string $fields = '*' has been changed to array $fields = ['*'] (BC Break - fix: change string to array)

    โž• Added

    • methods tableExists, tableColumnExists and getTable to migration
    • posibility to add an autoincrement primary key on an existing table

    ๐Ÿ›  Fixed

    • โž• Add a primary key on an existing table
  • v0.12.1 Changes

    December 18, 2017

    ๐Ÿ›  Fixed

    • binding for null and boolean values
  • v0.12.0 Changes

    December 06, 2017

    ๐Ÿ”„ Changed

    • โฌ‡๏ธ dropped support for PHP 5.6, PHP 7.0 and hhvm
    • โฌ‡๏ธ dropped support for symfony/console 2.8 and added support for symfony/console 4.0 and symfony/yaml 4.0
    • โž• added typehints
  • v0.11.0 Changes

    November 14, 2017

    โž• Added

    • โช option to execute all migrations from selected directory(-ies) in migrate and rollback command
    • โช option to execute migrations via classname in migrate and rollback command
    • โช TestCommand to test next migration via migrate-rollback-migrate(-rollback)
  • v0.10.0 Changes

    October 01, 2017

    โž• Added

    • method copyTable for copy table structure, data or both
    • interactive choice of migration dirs in CreateCommand
    • comment for table
    • comment for column
    • PHP 7.2 compatibility

    ๐Ÿ”„ Changed

    • ๐Ÿ”จ renameTable refactoring

    ๐Ÿ›  Fixed

    • ucfirst for lowercase named migrations
  • v0.9.1 Changes

    June 07, 2017

    ๐Ÿ›  Fixed

    • โช reverted calling execute instead of run for InitCommand in AbstractCommand
  • v0.9.0 Changes

    June 07, 2017

    ๐Ÿ”„ Changed

    • 0๏ธโƒฃ default action for migration table is now alter instead of create - possible BC, use ->create() for new tables

    โž• Added

    • dump command for creating migration from existing database
    • structure introduced - all migrations are checked against actual database structure - possible BC if unknown column types are used

    ๐Ÿ›  Fixed

    • command options config, config_type, template and indent require value
    • typehints in MigrationTable