Initial release
[websub-hub] / src / db / sqlite / sql / verification-attempts-increment.sql
1 --
2 UPDATE verification SET
3 next_attempt = strftime('%s', 'now') + :nextAttemptDelaySeconds,
4 attempts = attempts + 1
5 WHERE id = :verificationId
6