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 )