page redirect support and added missing unique indexes on database tables
This commit is contained in:
33
Oqtane.Server/Scripts/Tenant.1.0.1.sql
Normal file
33
Oqtane.Server/Scripts/Tenant.1.0.1.sql
Normal file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
|
||||
Version 1.0.1 Tenant migration script
|
||||
|
||||
*/
|
||||
|
||||
CREATE UNIQUE NONCLUSTERED INDEX IX_Site ON [dbo].[Site]
|
||||
(
|
||||
[TenantId],
|
||||
[Name]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE UNIQUE NONCLUSTERED INDEX IX_Role ON [dbo].[Role]
|
||||
(
|
||||
[SiteId],
|
||||
[Name]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE UNIQUE NONCLUSTERED INDEX IX_Profile ON [dbo].[Profile]
|
||||
(
|
||||
[SiteId],
|
||||
[Name]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE UNIQUE NONCLUSTERED INDEX IX_File ON [dbo].[File]
|
||||
(
|
||||
[FolderId],
|
||||
[Name]
|
||||
) ON [PRIMARY]
|
||||
GO
|
Reference in New Issue
Block a user