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.
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
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community