mirror of
https://github.com/bitwarden/server.git
synced 2025-02-22 02:51:33 +01:00
delete null creationdates too
This commit is contained in:
parent
941792bdd8
commit
24aa0dc026
@ -12,7 +12,8 @@ BEGIN
|
||||
FROM
|
||||
[dbo].[U2f]
|
||||
WHERE
|
||||
[CreationDate] < @Threshold
|
||||
[CreationDate] IS NULL
|
||||
OR [CreationDate] < @Threshold
|
||||
|
||||
SET @BatchSize = @@ROWCOUNT
|
||||
END
|
||||
|
@ -81,7 +81,8 @@ BEGIN
|
||||
FROM
|
||||
[dbo].[U2f]
|
||||
WHERE
|
||||
[CreationDate] < @Threshold
|
||||
[CreationDate] IS NULL
|
||||
OR [CreationDate] < @Threshold
|
||||
|
||||
SET @BatchSize = @@ROWCOUNT
|
||||
END
|
||||
|
Loading…
Reference in New Issue
Block a user