Initial release
[websub-hub] / src / db / postgres / 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