Initial release
[websub-hub] / src / db / postgres / sql / verification-attempt-reset.sql
1 -- Resetting verification attempts happens on publisher validation.
2 UPDATE verification SET
3 next_attempt = now(),
4 attempts = 0
5 WHERE id = $(verificationId)
6