-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels