database migration 1.0.4, store topic fetch etag/last-modified, provide these when...
[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