1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-18 02:11:22 +01: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

@ -20,7 +20,6 @@ namespace Bit.Core.Models.Table
public string SecurityStamp { get; set; } public string SecurityStamp { get; set; }
public bool TwoFactorEnabled { get; set; } public bool TwoFactorEnabled { get; set; }
public TwoFactorProviderType? TwoFactorProvider { get; set; } public TwoFactorProviderType? TwoFactorProvider { get; set; }
public string AuthenticatorKey { get; set; }
public string TwoFactorProviders { get; set; } public string TwoFactorProviders { get; set; }
public string TwoFactorRecoveryCode { get; set; } public string TwoFactorRecoveryCode { get; set; }
public string EquivalentDomains { get; set; } public string EquivalentDomains { get; set; }

View File

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

View File

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

View File

@ -9,8 +9,7 @@
[SecurityStamp] NVARCHAR (50) NOT NULL, [SecurityStamp] NVARCHAR (50) NOT NULL,
[TwoFactorEnabled] BIT NOT NULL, [TwoFactorEnabled] BIT NOT NULL,
[TwoFactorProvider] TINYINT NULL, [TwoFactorProvider] TINYINT NULL,
[AuthenticatorKey] NVARCHAR (50) NULL, [TwoFactorProviders] NVARCHAR (MAX) NULL,
[TwoFactorProviders] NVARCHAR (MAX) NULL,
[TwoFactorRecoveryCode] NVARCHAR (32) NULL, [TwoFactorRecoveryCode] NVARCHAR (32) NULL,
[EquivalentDomains] NVARCHAR (MAX) NULL, [EquivalentDomains] NVARCHAR (MAX) NULL,
[ExcludedGlobalEquivalentDomains] NVARCHAR (MAX) NULL, [ExcludedGlobalEquivalentDomains] NVARCHAR (MAX) NULL,