1
0
mirror of https://github.com/bitwarden/server synced 2025-12-27 13:43:18 +00:00

add missing migrations

This commit is contained in:
jaasen-livefront
2025-12-03 09:49:35 -08:00
parent 3c30168d30
commit 52d31b83b9
9 changed files with 129 additions and 31 deletions

View File

@@ -13,6 +13,7 @@
@Reprompt TINYINT,
@Key VARCHAR(MAX) = NULL,
@ArchivedDate DATETIME2(7) = NULL
@Archives NVARCHAR(MAX) = NULL
AS
BEGIN
SET NOCOUNT ON
@@ -31,7 +32,8 @@ BEGIN
[DeletedDate],
[Reprompt],
[Key],
[ArchivedDate]
[ArchivedDate],
[Archives]
)
VALUES
(
@@ -47,7 +49,8 @@ BEGIN
@DeletedDate,
@Reprompt,
@Key,
@ArchivedDate
@ArchivedDate,
@Archives
)
IF @OrganizationId IS NOT NULL

View File

@@ -13,7 +13,8 @@
@Reprompt TINYINT,
@Key VARCHAR(MAX) = NULL,
@CollectionIds AS [dbo].[GuidIdArray] READONLY,
@ArchivedDate DATETIME2(7) = NULL
@ArchivedDate DATETIME2(7) = NULL,
@Archives NVARCHAR(MAX) = NULL
AS
BEGIN
SET NOCOUNT ON