Fix constraint language of subscribe query
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5452cabf7e
commit
3b2e866f3e
|
|
@ -29,7 +29,7 @@ func (s *postgres) Subscribe(topic string, sub Subscriber) error {
|
||||||
INSERT INTO "subscribers"
|
INSERT INTO "subscribers"
|
||||||
("topic", "callback", "lease_seconds", "secret", "created")
|
("topic", "callback", "lease_seconds", "secret", "created")
|
||||||
VALUES ($1, $2, $3, $4, now())
|
VALUES ($1, $2, $3, $4, now())
|
||||||
ON CONFLICT ON CONSTRAINT subscribers_topic_callback
|
ON CONFLICT (topic, callback)
|
||||||
DO UPDATE SET lease_seconds = excluded.lease_seconds,
|
DO UPDATE SET lease_seconds = excluded.lease_seconds,
|
||||||
secret = excluded.secret,
|
secret = excluded.secret,
|
||||||
updated = excluded.created
|
updated = excluded.created
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user