bastinald / laravel-automatic-migrations

Automatic Laravel model migrations.
42 stars 11 forks source link

Artisan::call #6

Open NandorArgyelan opened 3 years ago

NandorArgyelan commented 3 years ago

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 run OS command.

I can use Artisan::call command browser Route::get('/migrate', function() { Artisan::call('migrate:auto');
return "Your database migrated"; });

I use this doc: https://nono.ma/laravel-artisan-the-command-does-not-exist

Nándi