0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-08 23:18:58 +02:00
bitwarden_rs/migrations/mysql/2018-07-11-181453_create_u2f_twofactor/down.sql
2019-05-26 23:03:05 +02:00

8 lines
170 B
SQL

UPDATE users
SET totp_secret = (
SELECT twofactor.data FROM twofactor
WHERE twofactor.type = 0
AND twofactor.user_uuid = users.uuid
);
DROP TABLE twofactor;