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