mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-28 15:53:05 +00:00
12 lines
196 B
Transact-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 |