Adding failed queue job options.

This commit is contained in:
Taylor Otwell
2013-11-26 10:11:29 -06:00
parent 1ac38202de
commit 9186d7a31d

View File

@@ -62,4 +62,21 @@ return array(
), ),
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
'failed' => array(
'database' => 'mysql', 'table' => 'failed_jobs',
),
); );