From 9850fdc22a05efb1c0f38cd38087f276fcccfb3e Mon Sep 17 00:00:00 2001 From: Nick Krantz Date: Wed, 4 Jun 2025 09:40:50 -0500 Subject: [PATCH] update UserIds --- .../dbo/Stored Procedures/Notification_MarkAsDeletedByTask.sql | 2 +- .../2025-05-30_00_Notification_MarkAsDeletedByTask.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sql/NotificationCenter/dbo/Stored Procedures/Notification_MarkAsDeletedByTask.sql b/src/Sql/NotificationCenter/dbo/Stored Procedures/Notification_MarkAsDeletedByTask.sql index 3cf2d4c668..42f2e5d3e8 100644 --- a/src/Sql/NotificationCenter/dbo/Stored Procedures/Notification_MarkAsDeletedByTask.sql +++ b/src/Sql/NotificationCenter/dbo/Stored Procedures/Notification_MarkAsDeletedByTask.sql @@ -4,7 +4,7 @@ AS BEGIN SET NOCOUNT ON; - -- Collect NotificationIds as they are altered + -- Collect UserIds as they are altered DECLARE @UserIdsForAlteredNotifications TABLE ( UserId UNIQUEIDENTIFIER ); diff --git a/util/Migrator/DbScripts/2025-05-30_00_Notification_MarkAsDeletedByTask.sql b/util/Migrator/DbScripts/2025-05-30_00_Notification_MarkAsDeletedByTask.sql index e4e6ed7d21..fd49ec9f81 100644 --- a/util/Migrator/DbScripts/2025-05-30_00_Notification_MarkAsDeletedByTask.sql +++ b/util/Migrator/DbScripts/2025-05-30_00_Notification_MarkAsDeletedByTask.sql @@ -4,7 +4,7 @@ AS BEGIN SET NOCOUNT ON; - -- Collect NotificationIds as they are altered + -- Collect UserIds as they are altered DECLARE @UserIdsForAlteredNotifications TABLE ( UserId UNIQUEIDENTIFIER );