Skip to content

Artisan::call #6

@NandorArgyelan

Description

@NandorArgyelan

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions