small fix postgres insert query

This commit is contained in:
Pedro Nasser
2016-09-20 19:21:30 -03:00
parent a280644ba3
commit 51fcdd2327

View File

@@ -187,7 +187,7 @@ func (ds *PostgresDatastore) StoreRoute(route *models.Route) (*models.Route, err
headers,
config
)
VALUES ($1, $2, $3, $4, $5)
VALUES ($1, $2, $3, $4, $5, $6)
ON CONFLICT (app_name, path) DO UPDATE SET
path = $2,
image = $3,