Browse Source
fix: pass env.DB_SSL to Knex so that migrations succeed with SSL (#316)
pull/335/head
Hugo
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
knexfile.ts
|
|
@ -8,7 +8,8 @@ module.exports = { |
|
|
|
database: env.DB_NAME, |
|
|
|
user: env.DB_USER, |
|
|
|
port: env.DB_PORT, |
|
|
|
password: env.DB_PASSWORD |
|
|
|
password: env.DB_PASSWORD, |
|
|
|
ssl: env.DB_SSL, |
|
|
|
}, |
|
|
|
migrations: { |
|
|
|
tableName: "knex_migrations", |
|
|
|