02b89e87e65328d25d1d2d83d9b743e36e4f1ebc
[websub-hub] / src / db / sqlite / sql / subscription-delivery-success.sql
1 --
2 UPDATE subscription SET
3 content_delivered = strftime('%s', 'now'),
4 delivery_attempts_since_success = 0,
5 delivery_next_attempt = 0
6 WHERE
7 topic_id = :topicId AND callback = :callback