Revert "Use database_path helper for sqlite database filename specified in .env"

This commit is contained in:
Taylor Otwell
2017-09-11 08:04:12 -05:00
committed by GitHub
parent d1cfd416ca
commit 80e96d276a

View File

@@ -35,7 +35,7 @@ return [
'sqlite' => [ 'sqlite' => [
'driver' => 'sqlite', 'driver' => 'sqlite',
'database' => database_path(env('DB_DATABASE', 'database.sqlite')), 'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '', 'prefix' => '',
], ],