mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 02:10:22 -06:00
Fix issue where MySQL was considered the default if left unset.
This commit is contained in:
parent
e9ab11051f
commit
1b411815b7
@ -44,7 +44,7 @@ if (!(false === $databaseUrl)) {
|
||||
|
||||
return [
|
||||
|
||||
'default' => envNonEmpty('DB_CONNECTION', 'mysql'),
|
||||
'default' => envNonEmpty('DB_CONNECTION', 'pgsql'),
|
||||
'connections' => [
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
|
@ -136,7 +136,7 @@ return [
|
||||
'export' => true,
|
||||
],
|
||||
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||
'version' => '5.0.3',
|
||||
'version' => '5.0.4',
|
||||
'api_version' => '1.0.0',
|
||||
'db_version' => 12,
|
||||
'maxUploadSize' => 15242880,
|
||||
|
@ -100,7 +100,7 @@ return [
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'database' => envNonEmpty('DB_CONNECTION', 'mysql'),
|
||||
'database' => envNonEmpty('DB_CONNECTION', 'pgsql'),
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user