mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
is null, not =
This commit is contained in:
parent
8fad9d849f
commit
bc30f47331
@ -9,6 +9,6 @@ BEGIN
|
||||
FROM
|
||||
[dbo].[TransactionView]
|
||||
WHERE
|
||||
[UserId] = NULL
|
||||
[UserId] IS NULL
|
||||
AND [OrganizationId] = @OrganizationId
|
||||
END
|
@ -155,7 +155,7 @@ BEGIN
|
||||
FROM
|
||||
[dbo].[TransactionView]
|
||||
WHERE
|
||||
[UserId] = NULL
|
||||
[UserId] IS NULL
|
||||
AND [OrganizationId] = @OrganizationId
|
||||
END
|
||||
GO
|
||||
|
Loading…
Reference in New Issue
Block a user