migrate script naming convention
This commit is contained in:
18
Oqtane.Server/Scripts/Tenant.00.09.02.00.sql
Normal file
18
Oqtane.Server/Scripts/Tenant.00.09.02.00.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