Initial release
[websub-hub] / src / db / postgres / sql / verification-validate.sql
1 --
2 UPDATE verification SET
3 is_publisher_validated = true,
4 attempts = 0,
5 next_attempt = now()
6 WHERE id = $(verificationId)
7