Replace storage_path with database_path helper
According to the docs, the sqlite database should be located within the "database" folder.
This commit is contained in:
parent
716e65268a
commit
879bc14650
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
'sqlite' => [
|
'sqlite' => [
|
||||||
'driver' => 'sqlite',
|
'driver' => 'sqlite',
|
||||||
'database' => storage_path('database.sqlite'),
|
'database' => database_path('database.sqlite'),
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue