laravel-automatic-migrations icon indicating copy to clipboard operation
laravel-automatic-migrations copied to clipboard

Artisan::call

Open NandorArgyelan opened this issue 4 years ago • 0 comments

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

NandorArgyelan avatar Sep 27 '21 21:09 NandorArgyelan