Initial release
[websub-hub] / src / db / postgres / sql / topic-attempts-reset.sql
1 --
2 UPDATE topic SET
3 content_fetch_attempts_since_success = 0,
4 content_fetch_next_attempt = 'infinity'::timestamptz
5 WHERE
6 id = $(topicId)
7