1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Bumped the dates on the transaction scripts so that QA deployment will pick them up (#4764)

This commit is contained in:
Conner Turnbull
2024-09-11 11:37:08 -04:00
committed by GitHub
parent 68b421fa2b
commit bee76732b4
3 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,18 @@
CREATE OR ALTER PROCEDURE [dbo].[Transaction_ReadByProviderId]
@ProviderId UNIQUEIDENTIFIER,
@Limit INT,
@StartAfter DATETIME2 = NULL
AS
BEGIN
SET NOCOUNT ON
SELECT
TOP (@Limit) *
FROM
[dbo].[TransactionView]
WHERE
[ProviderId] = @ProviderId
AND (@StartAfter IS NULL OR [CreationDate] < @StartAfter)
ORDER BY
[CreationDate] DESC
END