added ability to set default container at the page level, expanded size of role description in upgrade script for 0.9.2
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
/*
|
||||
|
||||
migration script
|
||||
Version 0.9.1 migration script
|
||||
|
||||
*/
|
||||
|
||||
|
18
Oqtane.Server/Scripts/Tenant.0.9.2.sql
Normal file
18
Oqtane.Server/Scripts/Tenant.0.9.2.sql
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
|
||||
Version 0.9.2 migration script
|
||||
|
||||
*/
|
||||
|
||||
ALTER TABLE [dbo].[Role]
|
||||
ALTER COLUMN [Description] VARCHAR (256) NOT NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[Page] ADD
|
||||
[DefaultContainerType] [nvarchar](200) NULL
|
||||
GO
|
||||
|
||||
UPDATE [dbo].[Page]
|
||||
SET [DefaultContainerType] = ''
|
||||
GO
|
||||
|
Reference in New Issue
Block a user