Skip to content

Commit

Permalink
Merge pull request #3502 from jzinkweg/bugfix/postgres-schema
Browse files Browse the repository at this point in the history
Make pgsql schema configurable via environment variable
  • Loading branch information
jbrooksuk committed Mar 9, 2019
2 parents 355c781 + 958ad64 commit 58533a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => env('DB_PREFIX', null),
'schema' => 'public',
'schema' => env('DB_SCHEMA', 'public'),
'sslmode' => 'prefer',
],

Expand Down

0 comments on commit 58533a8

Please sign in to comment.