chore: move db var to savePgsql function

pull/1129/head
luisserra 2 years ago
parent dcb167c10d
commit f76b70af81

@ -20,6 +20,7 @@ type PsqlConnInfo struct {
Password string Password string
Schema string Schema string
} }
func getPsqlConnInfo() (PsqlConnInfo, error) { func getPsqlConnInfo() (PsqlConnInfo, error) {
var host string var host string
if value := viper.GetString("PGSQL_HOST"); value != "" { if value := viper.GetString("PGSQL_HOST"); value != "" {
@ -107,6 +108,8 @@ func savePgsql(jsonInfo string) {
exitWithError(err) exitWithError(err)
} }
var db *gorm.DB
if PsqlConnInfo.Schema == "" { if PsqlConnInfo.Schema == "" {
db, err = gorm.Open(postgres.Open(PsqlConnInfo.toString()), &gorm.Config{}) db, err = gorm.Open(postgres.Open(PsqlConnInfo.toString()), &gorm.Config{})
} else { } else {

Loading…
Cancel
Save