From 784a561e65645b9842b65691cb355f4f0ea3511a Mon Sep 17 00:00:00 2001 From: Robin Tang Date: Wed, 24 Jan 2024 10:58:32 -0800 Subject: [PATCH] [PostgreSQL] Include DisableSSL (#32) --- config/postgres.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/config/postgres.go b/config/postgres.go index e896ae7f..c83b3f84 100644 --- a/config/postgres.go +++ b/config/postgres.go @@ -7,12 +7,13 @@ import ( ) type PostgreSQL struct { - Host string `yaml:"host"` - Port string `yaml:"port"` - Username string `yaml:"userName"` - Password string `yaml:"password"` - Database string `yaml:"database"` - Tables []*PostgreSQLTable `yaml:"tables"` + Host string `yaml:"host"` + Port string `yaml:"port"` + Username string `yaml:"userName"` + Password string `yaml:"password"` + Database string `yaml:"database"` + Tables []*PostgreSQLTable `yaml:"tables"` + DisableSSL bool `yaml:"disableSSL"` } type PostgreSQLTable struct {