Fixed the sql script file name and added update for null values.
This commit is contained in:
12
Oqtane.Server/Scripts/Tenant.01.00.01.01.sql
Normal file
12
Oqtane.Server/Scripts/Tenant.01.00.01.01.sql
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
|
||||
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
|
Reference in New Issue
Block a user