database migration 1.0.4, store topic fetch etag/last-modified, provide these when...
[websub-hub] / src / db / sqlite / sql / topic-set-content.sql
1 --
2 UPDATE topic
3 SET
4 is_active = true,
5 content_updated = strftime('%s', 'now'),
6 content = :content,
7 content_hash = :contentHash,
8 content_type = :contentType,
9 http_etag = :httpETag,
10 http_last_modified = :httpLastModified
11 WHERE id = :topicId