1
0
mirror of https://github.com/bitwarden/server synced 2026-01-18 00:13:19 +00:00

[Reset Password] Update all existing tables/sprocs/migrator scripts (#1235)

This commit is contained in:
Vincent Salucci
2021-03-23 16:04:11 -05:00
committed by GitHub
parent fccf5cc00e
commit 0cfd50382d
8 changed files with 368 additions and 8 deletions

View File

@@ -10,7 +10,8 @@
@ExternalId NVARCHAR(300),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7),
@Permissions NVARCHAR(MAX)
@Permissions NVARCHAR(MAX),
@ResetPasswordKey VARCHAR(MAX)
AS
BEGIN
SET NOCOUNT ON
@@ -28,7 +29,8 @@ BEGIN
[ExternalId],
[CreationDate],
[RevisionDate],
[Permissions]
[Permissions],
[ResetPasswordKey]
)
VALUES
(
@@ -43,6 +45,7 @@ BEGIN
@ExternalId,
@CreationDate,
@RevisionDate,
@Permissions
@Permissions,
@ResetPasswordKey
)
END