Merge branch 'v1.3-dev' as v1.3.7
[websub-hub] / src / db / postgres / sql / topic-set-content.sql
1 --
2 UPDATE topic
3 SET
4 is_active = true,
5 content_updated = 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)