chore: Add ssl true to the database options

This commit is contained in:
Faruk AYDIN
2021-11-23 11:39:34 +01:00
parent 9232ad3378
commit 3f8a711119

View File

@@ -8,6 +8,7 @@ const knexConfig = {
user: appConfig.postgresUsername,
password: appConfig.postgresPassword,
database: appConfig.postgresDatabase,
ssl: true,
},
migrations: {
directory: __dirname + '/src/db/migrations',