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:
@ -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
|
Reference in New Issue
Block a user