1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

remove provider from user table

This commit is contained in:
Kyle Spearrin
2017-06-24 14:40:46 -04:00
parent d57a68aae3
commit 61a436906c
6 changed files with 5 additions and 8 deletions

View File

@ -7,7 +7,6 @@
@MasterPasswordHint NVARCHAR(50),
@Culture NVARCHAR(10),
@SecurityStamp NVARCHAR(50),
@TwoFactorProvider TINYINT,
@TwoFactorProviders NVARCHAR(MAX),
@TwoFactorRecoveryCode NVARCHAR(32),
@EquivalentDomains NVARCHAR(MAX),
@ -32,7 +31,6 @@ BEGIN
[MasterPasswordHint],
[Culture],
[SecurityStamp],
[TwoFactorProvider],
[TwoFactorProviders],
[TwoFactorRecoveryCode],
[EquivalentDomains],
@ -54,7 +52,6 @@ BEGIN
@MasterPasswordHint,
@Culture,
@SecurityStamp,
@TwoFactorProvider,
@TwoFactorProviders,
@TwoFactorRecoveryCode,
@EquivalentDomains,

View File

@ -7,7 +7,6 @@
@MasterPasswordHint NVARCHAR(50),
@Culture NVARCHAR(10),
@SecurityStamp NVARCHAR(50),
@TwoFactorProvider TINYINT,
@TwoFactorProviders NVARCHAR(MAX),
@TwoFactorRecoveryCode NVARCHAR(32),
@EquivalentDomains NVARCHAR(MAX),
@ -32,7 +31,6 @@ BEGIN
[MasterPasswordHint] = @MasterPasswordHint,
[Culture] = @Culture,
[SecurityStamp] = @SecurityStamp,
[TwoFactorProvider] = @TwoFactorProvider,
[TwoFactorProviders] = @TwoFactorProviders,
[TwoFactorRecoveryCode] = @TwoFactorRecoveryCode,
[EquivalentDomains] = @EquivalentDomains,

View File

@ -7,7 +7,6 @@
[MasterPasswordHint] NVARCHAR (50) NULL,
[Culture] NVARCHAR (10) NOT NULL,
[SecurityStamp] NVARCHAR (50) NOT NULL,
[TwoFactorProvider] TINYINT NULL,
[TwoFactorProviders] NVARCHAR (MAX) NULL,
[TwoFactorRecoveryCode] NVARCHAR (32) NULL,
[EquivalentDomains] NVARCHAR (MAX) NULL,