mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
fix: Critical bugfix 'databaseSchema' not defaulting to 'public'
This commit is contained in:
parent
766932bc68
commit
e6b55cba60
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.1.7
|
||||||
|
|
||||||
|
- fix: Critical bugfix 'databaseSchema' not defaulting to 'public'
|
||||||
|
|
||||||
## 3.1.6
|
## 3.1.6
|
||||||
|
|
||||||
- fix: Database migrator does use the databaseSchema option.
|
- fix: Database migrator does use the databaseSchema option.
|
||||||
|
@ -7,7 +7,7 @@ const THIRTY_DAYS = 30 * 24 * 60 * 60 * 1000;
|
|||||||
|
|
||||||
const DEFAULT_OPTIONS = {
|
const DEFAULT_OPTIONS = {
|
||||||
databaseUrl: process.env.DATABASE_URL,
|
databaseUrl: process.env.DATABASE_URL,
|
||||||
databaseSchema: 'another',
|
databaseSchema: 'public',
|
||||||
port: process.env.HTTP_PORT || process.env.PORT || 4242,
|
port: process.env.HTTP_PORT || process.env.PORT || 4242,
|
||||||
host: process.env.HTTP_HOST,
|
host: process.env.HTTP_HOST,
|
||||||
baseUriPath: process.env.BASE_URI_PATH || '',
|
baseUriPath: process.env.BASE_URI_PATH || '',
|
||||||
|
Loading…
Reference in New Issue
Block a user