Initial release
[websub-hub] / src / db / postgres / sql / topic-content-fetch-requested.sql
1 -- update topic that a new publish notification occurred
2 UPDATE topic
3 SET
4 last_publish = now(),
5 content_fetch_next_attempt = now()
6 WHERE id = $(topicId)
7