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, user: appConfig.postgresUsername,
password: appConfig.postgresPassword, password: appConfig.postgresPassword,
database: appConfig.postgresDatabase, database: appConfig.postgresDatabase,
ssl: true,
}, },
migrations: { migrations: {
directory: __dirname + '/src/db/migrations', directory: __dirname + '/src/db/migrations',