diff --git a/config/database.php b/config/database.php index cfa1f15ee721b7e71d632acbf43dfc7bc443f37c..891fb9238df9dfe845c28f80e786b75ce453386f 100644 --- a/config/database.php +++ b/config/database.php @@ -48,7 +48,7 @@ return [ 'sqlite' => [ 'driver' => 'sqlite', - 'database' => database_path(env('DB_DATABASE', 'database.sqlite')), + 'database' => database_path(env('SQLITE_DATABASE', 'database.sqlite')), 'prefix' => '', ], diff --git a/config/queue.php b/config/queue.php index d3bc74f4c0bd1b4df78c532edde308243fddc5c6..81de65edac43bdaf9f7f848bd0ffc5278d805bcd 100644 --- a/config/queue.php +++ b/config/queue.php @@ -9,7 +9,7 @@ return [ | API, giving you convenient access to each back-end using the same | syntax for every one. Here you may define a default connection. | - */ + */ 'default' => env('QUEUE_CONNECTION', 'sync'), /* |-------------------------------------------------------------------------- @@ -22,7 +22,7 @@ return [ | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" | - */ + */ 'connections' => [ 'sync' => [ 'driver' => 'sync', @@ -64,9 +64,9 @@ return [ | 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' => [ - 'database' => env('DB_CONNECTION', 'mysql'), + 'database' => 'sqlite', 'table' => 'failed_jobs', ], -]; \ No newline at end of file +];