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