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