c14258b5f28080a75f27f47a5de080edaa6d0881
[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)