mirror of
https://github.com/bitwarden/server
synced 2025-12-10 13:23:27 +00:00
Fix case inconsitency in provider migration (#1806)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user