oqtane.framework/Oqtane.Server/Scripts/Tenant.01.00.01.01.sql

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