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:
parent
c533a3aa8c
commit
b04f506853
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user