1
0
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:
Kyle Spearrin 2018-07-21 08:58:16 -04:00
parent 941792bdd8
commit 24aa0dc026
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,8 @@ BEGIN
FROM
[dbo].[U2f]
WHERE
[CreationDate] < @Threshold
[CreationDate] IS NULL
OR [CreationDate] < @Threshold
SET @BatchSize = @@ROWCOUNT
END

View File

@ -81,7 +81,8 @@ BEGIN
FROM
[dbo].[U2f]
WHERE
[CreationDate] < @Threshold
[CreationDate] IS NULL
OR [CreationDate] < @Threshold
SET @BatchSize = @@ROWCOUNT
END