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 {