Changelog for Laravel Migrations Generator
- Support for Laravel 5
- Add options –defaultIndexNames and –defaultFKNames to use Laravel’s default generated names
- –no-interaction support
- Migrate table field comments
- Add connection to migrations if its not the default
- Bugfix:
- –ignore doesn’t ignoring the first table in the list
- Remove backticks from index names #17
- Drop foreign keys used incorrect key name #34
- Remove table prefix from migrations
- Escape table names and args
- Map JSON columns as text
- Boolean default results in empty string
- Support for Laravel 4.2
- Support for named foreign keys
- Fix error with –ignore option
- Fixed problem with char fields showing up as varchar
- Allow decimal, float, and double to be unsigned
- Allow cascading on foreign key update/delete
- Now fully supports for enum fields
- Add support for bit fields as Boolean (Laravel Migration Limitation)
- Fix crash when migrating tables that use enum
- Added Tests
- Major refactoring of the code
- Ability to add entries into the Migrations Table, so that they won’t be run as they already exist.
- Convert Blobs to Binary fields
- Minor Code Changes