Fixed the sql script file name and added update for null values.

This commit is contained in:
Mike Casas 2020-06-18 12:58:30 -04:00
parent 40571bfb6e
commit 7d89670930

View File

@ -6,4 +6,7 @@ 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