1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-24 04:51:03 -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], [DeletionDate],
[Disabled], [Disabled],
[HideEmail], [HideEmail],
[CipherId] [CipherId],
[Emails]
) )
VALUES VALUES
( (
@ -58,7 +59,8 @@ BEGIN
@DeletionDate, @DeletionDate,
@Disabled, @Disabled,
@HideEmail, @HideEmail,
@CipherId @CipherId,
@Emails
) )
IF @UserId IS NOT NULL IF @UserId IS NOT NULL

View File

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

View File

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