This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
196 B
Transact-SQL

/*
Version 1.0.1 Notification migration script
*/
ALTER TABLE [dbo].[Notification] ADD
[SendOn] [datetime] NULL
GO
UPDATE [dbo].[Notification] SET SendOn = CreatedOn WHERE SendOn IS NULL
GO