mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Fix case inconsitency in provider migration (#1806)
This commit is contained in:
parent
f70fb5a74a
commit
2ed588d005
@ -1363,7 +1363,7 @@ BEGIN
|
|||||||
[Date] >= @StartDate
|
[Date] >= @StartDate
|
||||||
AND (@BeforeDate IS NOT NULL OR [Date] <= @EndDate)
|
AND (@BeforeDate IS NOT NULL OR [Date] <= @EndDate)
|
||||||
AND (@BeforeDate IS NULL OR [Date] < @BeforeDate)
|
AND (@BeforeDate IS NULL OR [Date] < @BeforeDate)
|
||||||
AND [Providerid] = @ProviderId
|
AND [ProviderId] = @ProviderId
|
||||||
ORDER BY [Date] DESC
|
ORDER BY [Date] DESC
|
||||||
OFFSET 0 ROWS
|
OFFSET 0 ROWS
|
||||||
FETCH NEXT @PageSize ROWS ONLY
|
FETCH NEXT @PageSize ROWS ONLY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user