Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
lane-a-pipeline
main
tag: launch-2026-06-01
Files
Commits
Issues
makenotwork
/
server
/
migrations
/
067_totp_last_used_step.sql
209 B · 4 lines
History
Blame
Raw
1
--
Track the last accepted TOTP time step to prevent code replay within the
2
--
same 30-second window. NULL = never used (freshly set up).
3
ALTER
TABLE
users ADD COLUMN IF NOT EXISTS totp_last_used_step
BIGINT
;
4