diff --git a/util/SqlUpdate/2017-06-07_00_UserTwoFactorCleanup.sql b/util/SqlUpdate/2017-06-07_00_UserTwoFactorCleanup.sql index 326041f8e7..b408fb4fa5 100644 --- a/util/SqlUpdate/2017-06-07_00_UserTwoFactorCleanup.sql +++ b/util/SqlUpdate/2017-06-07_00_UserTwoFactorCleanup.sql @@ -1,3 +1,6 @@ +alter table [user] add [TwoFactorProviders] NVARCHAR (MAX) NULL +go + update [user] set twofactorproviders = '{"0":{"Enabled":'+ (case when twofactorenabled = 1 then 'true' else 'false' end) +',"Remember":true,"MetaData":{"Key":"'+ authenticatorkey +'"}}}' where twofactorprovider is not null and twofactorprovider = 0