allow changing of sqlite db path

This commit is contained in:
Nabeel Shahzad
2017-12-06 11:31:15 -06:00
parent 3b53f884d1
commit 0c61c9a6d5

View File

@@ -23,7 +23,7 @@ return [
'sqlite' => [
'driver' => 'sqlite',
'database' => storage_path('db.sqlite'),
'database' => env('DB_PATH', storage_path('db.sqlite')),
'prefix' => '',
],