From 879bc146504462ef273b893010edf004026aa021 Mon Sep 17 00:00:00 2001 From: pedes42 Date: Fri, 18 Sep 2015 14:16:52 +0200 Subject: [PATCH] Replace storage_path with database_path helper According to the docs, the sqlite database should be located within the "database" folder. --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index f6cf86b4..5987be69 100644 --- a/config/database.php +++ b/config/database.php @@ -48,7 +48,7 @@ 'sqlite' => [ 'driver' => 'sqlite', - 'database' => storage_path('database.sqlite'), + 'database' => database_path('database.sqlite'), 'prefix' => '', ],