Phoenix v0.7.0 Release Notes

Release Date: 2017-04-06 // about 7 years ago
  • ๐Ÿ”„ Changed

    • ๐Ÿ— move all table methods (addColumn, addIndex, addForeignKey etc) from AbstractMigration to new Element MigrationTable which is now used in Query Builders
    • migration dir in create command is required if there are more then one migration dir registered
    • using serial and bigserial for autoincrement primary keys in pgsql instead of creating and dropping custom sequence

    โž• Added

    • method getSettings to Column
    • column types: tiny integer, small integer and medium integer, double, tinytext, mediumtext, longtext, tinyblob, mediumblob, blob, longblob, binary, varbinary, point, line, polygon

    ๐Ÿ›  Fixed

    • โช wrong order in rollback

    โœ‚ Removed

    • magic method variants addColumn and changeColumn from MigrationTable - possible BC if somebody uses methods addColumn(Column $column) or changeColumn($oldName, Column $column)