From 54a857f215d1c4e4370c895ff8166af1d2530d43 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 14 Nov 2016 22:35:14 -0500 Subject: [PATCH] add 2fa recovery code to user create sproc --- src/Sql/dbo/Stored Procedures/User_Create.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Sql/dbo/Stored Procedures/User_Create.sql b/src/Sql/dbo/Stored Procedures/User_Create.sql index dc31c299db..cd7d32e081 100644 --- a/src/Sql/dbo/Stored Procedures/User_Create.sql +++ b/src/Sql/dbo/Stored Procedures/User_Create.sql @@ -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 )