1
0
mirror of https://github.com/bitwarden/server synced 2026-01-10 20:44:05 +00:00

remove authenticatorkey from user

This commit is contained in:
Kyle Spearrin
2017-06-07 14:32:08 -04:00
parent ecc2468409
commit b5fbe23be2
4 changed files with 1 additions and 8 deletions

View File

@@ -9,7 +9,6 @@
@SecurityStamp NVARCHAR(50),
@TwoFactorEnabled BIT,
@TwoFactorProvider TINYINT,
@AuthenticatorKey NVARCHAR(50),
@TwoFactorProviders NVARCHAR(MAX),
@TwoFactorRecoveryCode NVARCHAR(32),
@EquivalentDomains NVARCHAR(MAX),
@@ -36,7 +35,6 @@ BEGIN
[SecurityStamp] = @SecurityStamp,
[TwoFactorEnabled] = @TwoFactorEnabled,
[TwoFactorProvider] = @TwoFactorProvider,
[AuthenticatorKey] = @AuthenticatorKey,
[TwoFactorProviders] = @TwoFactorProviders,
[TwoFactorRecoveryCode] = @TwoFactorRecoveryCode,
[EquivalentDomains] = @EquivalentDomains,