Initial release
[websub-hub] / src / db / sqlite / sql / topic-attempts-increment.sql
1 --
2 UPDATE topic SET
3 content_fetch_attempts_since_success = content_fetch_attempts_since_success + 1,
4 content_fetch_next_attempt = strftime('%s', 'now') + :nextAttemptDelaySeconds
5 WHERE
6 id = :topicId