Skip to content

Releases: bennett-treptow/laravel-migration-generator

Default Null for Text fields Unless Specified

09 Feb 21:56
9756952

Choose a tag to compare

What's Changed

Full Changelog: 4.2.0...4.2.1

Laravel 9 Support

09 Feb 14:28
6336cc0

Choose a tag to compare

Update to allow for any version 9 illuminate packages

4.1.3 - Fix Quoting Issues

08 Feb 00:14
8b80c75

Choose a tag to compare

What's Changed

Full Changelog: 4.1.2...4.1.3

Fix - Providing table and view names from command line

05 Feb 18:07
9f7b44b

Choose a tag to compare

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

05 Feb 17:53
6357f32

Choose a tag to compare

What's Changed

Full Changelog: 4.1.0...4.1.1

Character Set Fix and Nullable Changes

29 Nov 17:05
ed22761

Choose a tag to compare

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

Full Changelog: 4.0.2...4.1.0

Bug fix - Index Removal

26 Oct 16:50
cebb884

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 4.0.1...4.0.2

View Sorting

27 Sep 18:34
cf58205

Choose a tag to compare

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

24 Sep 20:29
93e92f2

Choose a tag to compare

New foreign key sorting! Check out UPGRADE.md and README.md for upgrade and information on new sorting options.

Also included in this release is the option to use defined timestamp column types instead of converting to timestamp() as completed by @nacl30d in PR #46

Bugfix - Expand available characters in enum values

18 Jun 00:57
8987a4f

Choose a tag to compare

Thanks to @hellerbenjamin for bringing this to light with #39. #40 resolves this problem with not finding all quoted values other than alpha characters.