mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
22608ae983
* Rework the way 2FA is enabled/disabled (fixes #3309) * postgres format * change algo to sha1 for better compat * review comments * review * clippy --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
7 lines
142 B
SQL
7 lines
142 B
SQL
ALTER TABLE local_user
|
|
DROP COLUMN totp_2fa_url;
|
|
|
|
ALTER TABLE local_user
|
|
ADD COLUMN totp_2fa_enabled boolean NOT NULL DEFAULT FALSE;
|
|
|