From 3b03fb7e8bf2fc5e3b79f44877ad5c659088621f Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 30 Jul 2020 20:48:28 +0200 Subject: [PATCH] Add sqlite test entry --- config/database.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/database.php b/config/database.php index ea073f01e5..e5609829c6 100644 --- a/config/database.php +++ b/config/database.php @@ -79,6 +79,11 @@ return [ 'database' => envNonEmpty('DB_DATABASE', storage_path('database/database.sqlite')), 'prefix' => '', ], + 'sqlite_test' => [ + 'driver' => 'sqlite', + 'database' => envNonEmpty('DB_DATABASE', storage_path('database/test_db.sqlite')), + 'prefix' => '', + ], 'mysql' => [ 'driver' => 'mysql', 'host' => envNonEmpty('DB_HOST', $host),