Support the ongoing development of Laravel.io →
Configuration Database
Last updated 1 year ago.
0

I'm running into the exact same problem. Did you end up solving this?

Running the artisan command with --env=.env also does not seem to solve the issue.

0

First of all - the configuration for failed jobs is located in config/queue.php:

    'failed' => [
        'database' => 'pgsql',
        'table' => '_failed_jobs',
    ],

Then you must create the migratation for creating the table:

php artisan queue:failed-table

And finally run the migrations:

php artisan migrate
Last updated 7 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

notifybee notifybee Joined 31 Jul 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.