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],
|
[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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user