This commit is contained in:
James Cole
2022-01-07 14:35:22 +01:00
parent f12b3bc9b7
commit accecf6a76
2 changed files with 4 additions and 1 deletions

View File

@@ -109,7 +109,7 @@ return [
'password' => env('DB_PASSWORD', $password),
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
'schema' => envNonEmpty('PGSQL_SCHEMA', 'public'),
'sslmode' => envNonEmpty('PGSQL_SSL_MODE', 'prefer'),
'sslcert' => envNonEmpty('PGSQL_SSL_CERT'),
'sslkey' => envNonEmpty('PGSQL_SSL_KEY'),