Skip to content

Commit

Permalink
Make pgsql schema configurable via environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jzinkweg committed Mar 8, 2019
1 parent 355c781 commit 958ad64
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 958ad64

Please sign in to comment.