Support for user personalizable pages

This commit is contained in:
Shaun Walker
2019-11-10 14:56:29 -05:00
parent ab564f7244
commit ffba735aac
17 changed files with 587 additions and 378 deletions

View File

@ -38,6 +38,8 @@ CREATE TABLE [dbo].[Page](
[IsNavigation] [bit] NOT NULL,
[LayoutType] [nvarchar](200) NOT NULL,
[EditMode] [bit] NOT NULL,
[UserId] [int] NULL,
[IsPersonalizable] [bit] NOT NULL,
[CreatedBy] [nvarchar](256) NOT NULL,
[CreatedOn] [datetime] NOT NULL,
[ModifiedBy] [nvarchar](256) NOT NULL,
@ -346,7 +348,8 @@ GO
CREATE UNIQUE NONCLUSTERED INDEX IX_Page ON dbo.Page
(
SiteId,
[Path]
[Path],
UserId
) ON [PRIMARY]
GO