Fix issue where MySQL was considered the default if left unset.

This commit is contained in:
James Cole
2020-02-01 16:14:21 +01:00
parent e9ab11051f
commit 1b411815b7
3 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ if (!(false === $databaseUrl)) {
return [
'default' => envNonEmpty('DB_CONNECTION', 'mysql'),
'default' => envNonEmpty('DB_CONNECTION', 'pgsql'),
'connections' => [
'sqlite' => [
'driver' => 'sqlite',