laravel-automatic-migrations
laravel-automatic-migrations copied to clipboard
Automatic Laravel model migrations.
It would be nice and more aligned with how the [Migration Order](../tree/master/readme.md#Migration Order) [natively works in Laravel](https://laravel.com/docs/migrations#generating-migrations), to have an [`Attribute`](https://www.php.net/manual/en/language.attributes.php) automatically created, containing the date of the migration creation:...
Will you be updating this for Laravel 9?
Heya, just started out a fresh project using your livewire-ui package, however i am encountering an issue with the automatic migrations. It doesnt seem to be handling a foreign key...
The changes to allow the package to parse models adding in modules used via nwidart/laravel-modules.
I am developing my application using https://nwidart.com/laravel-modules and there is no way to auto-discover the models generated in the Modules folder. Kindly provide way of specify preferred models files path,
this package has moved here: https://github.com/legodion/lucid i am the author, this is my alt account that repo will be updated and maintained going forward. it supports Laravel 9 etc.
This issue is only a proposal: Since auto migration could lead to accidental column deletions and data loss while updating existing tables, I added some code to MigrateAutoCommand.php to alert...
Should i just create vanilla laravel migration tables for pivot tables or is there a way to handle it with this library? Lets say I have a Post model and...
Hi! If I modify LaravelAutomaticMigrationsProvider class like this: ... if ($this->app->runningInConsole()) { $this->commands([ MakeAModelCommand::class, ]); } $this->commands([ MigrateAutoCommand::class, ]); ... It help to migrate an exist database where I can't...