Browse Source

Merge pull request #3500 from pedes42/master

Replace storage_path with database_path helper
Taylor Otwell 9 years ago
parent
commit
24575f4b89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/database.php

+ 1 - 1
config/database.php

@@ -48,7 +48,7 @@ return [
 
         'sqlite' => [
             'driver'   => 'sqlite',
-            'database' => storage_path('database.sqlite'),
+            'database' => database_path('database.sqlite'),
             'prefix'   => '',
         ],