Fixed issue where Page Url expansion script for 1.0.4 was not implemented properly - it was not tagged as an embedded resource.

This commit is contained in:
Shaun Walker
2020-10-21 08:01:17 -04:00
parent fc7000394f
commit 0ef04e81ff
6 changed files with 66 additions and 18 deletions

View File

@ -1,3 +0,0 @@
ALTER TABLE [dbo].[Page]
ALTER COLUMN [Path] [nvarchar](256) NOT NULL
GO

View File

@ -0,0 +1,16 @@
/*
Version 2.0.0 Tenant migration script
*/
ALTER TABLE [dbo].[Page]
ALTER COLUMN [Path] [nvarchar](256) NOT NULL
GO
ALTER TABLE [dbo].[Profile] ADD
[Options] [nvarchar](2000) NULL
GO
UPDATE [dbo].[Profile] SET Options = ''
GO