Skip to content

Commit

Permalink
add require:true to pg.defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
leightkt committed Mar 11, 2021
1 parent 1c899ea commit 567782d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion knexfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Update with your config settings.
const pg = require('pg')
pg.defaults.ssl = { rejectUnauthorized: false }
pg.defaults.ssl = { require: true, rejectUnauthorized: false }

module.exports = {

Expand Down

0 comments on commit 567782d

Please sign in to comment.