1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-23 17:07:42 +01:00

add 2fa recovery code to user create sproc

This commit is contained in:
Kyle Spearrin 2016-11-14 22:35:14 -05:00
parent e68ed04f77
commit 54a857f215

View File

@ -10,6 +10,7 @@
@TwoFactorEnabled BIT,
@TwoFactorProvider TINYINT,
@AuthenticatorKey NVARCHAR(50),
@TwoFactorRecoveryCode NVARCHAR(32),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@ -29,6 +30,7 @@ BEGIN
[TwoFactorEnabled],
[TwoFactorProvider],
[AuthenticatorKey],
[TwoFactorRecoveryCode],
[CreationDate],
[RevisionDate]
)
@ -45,6 +47,7 @@ BEGIN
@TwoFactorEnabled,
@TwoFactorProvider,
@AuthenticatorKey,
@TwoFactorRecoveryCode,
@CreationDate,
@RevisionDate
)