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 );