Merge branch 'v1.3-dev'
[websub-hub] / sql / verification-attempt-increment.sql
1 --
2 UPDATE verification SET
3 next_attempt = (now() + $(nextAttemptDelaySeconds)::text::INTERVAL),
4 attempts = attempts + 1
5 WHERE id = $(verificationId)
6