Skip to content

Commit

Permalink
fix(postgres): db host assignment from config (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdh authored Jan 24, 2022
1 parent 068d750 commit da942bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func migratePostgres() (err error) {
log.Info("Initiating Postgres client...")

pgConfig := postgres.Config{
Host: config.ServerHost,
Host: config.DBHost,
Port: config.DBPort,
Name: config.DBName,
User: config.DBUser,
Expand Down

0 comments on commit da942bb

Please sign in to comment.