Initial release
[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 WHERE id = $(topicId)