Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
8 Zeilen
170 B
MySQL
8 Zeilen
170 B
MySQL
|
UPDATE users
|
||
|
SET totp_secret = (
|
||
|
SELECT twofactor.data FROM twofactor
|
||
|
WHERE twofactor.type = 0
|
||
|
AND twofactor.user_uuid = users.uuid
|
||
|
);
|
||
|
|
||
|
DROP TABLE twofactor;
|