Browse Source

Fixed defaults

pull/13933/head
brandonkelly 2 years ago
parent
commit
79d2b3e7f4
No known key found for this signature in database GPG Key ID: 5E86D0CED64C7093
  1. 4
      tests/_craft/config/db.php

4
tests/_craft/config/db.php

@ -12,6 +12,6 @@ return [
'password' => App::env('DB_PASSWORD'),
'schema' => App::env('DB_SCHEMA'),
'tablePrefix' => App::env('DB_TABLE_PREFIX'),
'charset' => App::env('DB_CHARSET') ?? 'utf8',
'collation' => App::env('DB_COLLATION'),
'charset' => App::env('DB_CHARSET') ?: 'utf8',
'collation' => App::env('DB_COLLATION') ?: null,
];
Loading…
Cancel
Save