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