uptime-kuma/db/patch-2fa-invalidate-used-token.sql

8 lines
181 B
MySQL
Raw Normal View History

2021-10-18 22:42:33 +00:00
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE user
ADD twofa_last_token VARCHAR(6);
COMMIT;