Releases: bennett-treptow/laravel-migration-generator
Releases · bennett-treptow/laravel-migration-generator
Default Null for Text fields Unless Specified
What's Changed
- Fix Text fields being default null unless otherwise specified by @bennett-treptow in #65
Full Changelog: 4.2.0...4.2.1
Laravel 9 Support
Update to allow for any version 9 illuminate packages
4.1.3 - Fix Quoting Issues
What's Changed
- Fix quoting issues for comments by @bennett-treptow in #63
Full Changelog: 4.1.2...4.1.3
Fix - Providing table and view names from command line
What's Changed
- Fix - update filter on array error when specifying tables on command line by @bennett-treptow in #61
Full Changelog: 4.1.1...4.1.2
Export Comments
Character Set Fix and Nullable Changes
What's Changed
- Fixing a bug where CHARACTER SET breaks everything by @ChrisThompsonTLDR in #56
- Nullable is now only set on columns that explicitly state they are or are not nullable (NULL or NOT NULL or DEFAULT NULL). If no nullable modifier is provided, no
->nullable()will be added.
New Contributors
- @ChrisThompsonTLDR made their first contribution in #56
Full Changelog: 4.0.2...4.1.0
Bug fix - Index Removal
What's Changed
- php-cs-fixer ordered_imports by @Jimbolino in #51
- fixes comparison by @ordago in #55
New Contributors
Full Changelog: 4.0.1...4.0.2
View Sorting
Views were being created before the tables they referenced -- this make sure that views are always indexed to be AFTER table migrations.
Foreign Key Sorting
Bugfix - Expand available characters in enum values
Thanks to @hellerbenjamin for bringing this to light with #39. #40 resolves this problem with not finding all quoted values other than alpha characters.