-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support other Postgres relevant Sequelize options #32
Comments
We'd love to have the |
Hey @adlenafane
I have added this in PR #67 Please have a look and let me know if this works for you. |
…ironment-variables [feature, #32] support optional environment variables
@adlenafane support for |
[feature, #32] support additional options
[feature, #32] added final config options
Implemented in version 1.3.0 |
Sequelize supports a wide range of options that this utility ignores. Go through them, work out which ones are supported by
Postgres
and allow them to be used.programatic only options
Can only be set by passing in as an option to Sequelize via
dialectModule
dialectModulePath
define
query
schema
set
sync
pool.validate
quoteIdentifiers
transactionType
retry.match
retry.max
typeValidation
hooks
config options
Can be defined in config file.
protocol
timezone
clientMinMessages
benchmark
omitNull
native
replication
pool.acquire
pool.evict
environment variable options
Can be defined as an environment variable
DB_POOL_ACQUIRE
iepool.acquire
DB_POOL_EVICT
iepool.evict
omiting any of these options means they are omitted from the final config object.
The text was updated successfully, but these errors were encountered: