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:
@ -1,3 +0,0 @@
|
||||
ALTER TABLE [dbo].[Page]
|
||||
ALTER COLUMN [Path] [nvarchar](256) NOT NULL
|
||||
GO
|
16
Oqtane.Server/Scripts/Tenant.02.00.00.01.sql
Normal file
16
Oqtane.Server/Scripts/Tenant.02.00.00.01.sql
Normal 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
|
Reference in New Issue
Block a user