1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-23 20:41:04 -05:00

fix parameter positions

This commit is contained in:
✨ Audrey ✨ 2025-05-23 12:52:50 -04:00
parent c533a3aa8c
commit b04f506853
No known key found for this signature in database
3 changed files with 12 additions and 8 deletions

View File

@ -39,7 +39,8 @@ BEGIN
[DeletionDate],
[Disabled],
[HideEmail],
[CipherId]
[CipherId],
[Emails]
)
VALUES
(
@ -58,7 +59,8 @@ BEGIN
@DeletionDate,
@Disabled,
@HideEmail,
@CipherId
@CipherId,
@Emails
)
IF @UserId IS NOT NULL

View File

@ -29,7 +29,6 @@ BEGIN
[Data] = @Data,
[Key] = @Key,
[Password] = @Password,
[Emails] = @Emails,
[MaxAccessCount] = @MaxAccessCount,
[AccessCount] = @AccessCount,
[CreationDate] = @CreationDate,
@ -38,7 +37,8 @@ BEGIN
[DeletionDate] = @DeletionDate,
[Disabled] = @Disabled,
[HideEmail] = @HideEmail,
[CipherId] = @CipherId
[CipherId] = @CipherId,
[Emails] = @Emails
WHERE
[Id] = @Id

View File

@ -42,7 +42,6 @@ BEGIN
[Data] = @Data,
[Key] = @Key,
[Password] = @Password,
[Emails] = @Emails,
[MaxAccessCount] = @MaxAccessCount,
[AccessCount] = @AccessCount,
[CreationDate] = @CreationDate,
@ -51,7 +50,8 @@ BEGIN
[DeletionDate] = @DeletionDate,
[Disabled] = @Disabled,
[HideEmail] = @HideEmail,
[CipherId] = @CipherId
[CipherId] = @CipherId,
[Emails] = @Emails
WHERE
[Id] = @Id
@ -102,7 +102,8 @@ BEGIN
[DeletionDate],
[Disabled],
[HideEmail],
[CipherId]
[CipherId],
[Emails]
)
VALUES
(
@ -121,7 +122,8 @@ BEGIN
@DeletionDate,
@Disabled,
@HideEmail,
@CipherId
@CipherId,
@Emails
)
IF @UserId IS NOT NULL