9ff01e0395ef7c689b3ae6d1af33d586d77b683a
[websub-hub] / src / db / postgres / sql / subscription-delivery-success.sql
1 --
2 UPDATE subscription SET
3 content_delivered = now(),
4 delivery_attempts_since_success = 0,
5 delivery_next_attempt = '-infinity'::timestamptz
6 WHERE
7 topic_id = $(topicId) AND callback = $(callback)