0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-24 02:37:28 +01:00
uptime-kuma/db/patch-2fa.sql

11 lines
245 B
MySQL
Raw Normal View History

-- 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_secret VARCHAR(64);
ALTER TABLE user
2021-09-11 00:13:05 +02:00
ADD twofa_status BOOLEAN default 0 NOT NULL;
COMMIT;