From 45e1e1a01bbc849eab3b14b7dd453b8f6640ed76 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Fri, 10 Apr 2020 10:51:27 -0400 Subject: [PATCH] [Soft Delete] - cleanup whitespace in Cipher_Restore --- src/Sql/dbo/Stored Procedures/Cipher_Restore.sql | 2 +- util/Migrator/DbScripts/2020-04-02_00_CipherSoftDelete.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sql/dbo/Stored Procedures/Cipher_Restore.sql b/src/Sql/dbo/Stored Procedures/Cipher_Restore.sql index 3d7cf7ff21..0df591bf57 100644 --- a/src/Sql/dbo/Stored Procedures/Cipher_Restore.sql +++ b/src/Sql/dbo/Stored Procedures/Cipher_Restore.sql @@ -23,7 +23,7 @@ BEGIN [Edit] = 1 AND [DeletedDate] IS NOT NULL AND [Id] IN (SELECT * FROM @Ids) - + DECLARE @UtcNow DATETIME2(7) = GETUTCDATE(); UPDATE [dbo].[Cipher] diff --git a/util/Migrator/DbScripts/2020-04-02_00_CipherSoftDelete.sql b/util/Migrator/DbScripts/2020-04-02_00_CipherSoftDelete.sql index af5c1537f7..e34b20784c 100644 --- a/util/Migrator/DbScripts/2020-04-02_00_CipherSoftDelete.sql +++ b/util/Migrator/DbScripts/2020-04-02_00_CipherSoftDelete.sql @@ -30,7 +30,7 @@ BEGIN WHERE [Edit] = 1 AND [Id] IN (SELECT * FROM @Ids) - + DECLARE @UtcNow DATETIME2(7) = GETUTCDATE(); UPDATE [dbo].[Cipher]