Fix for IDeletable

This commit is contained in:
Emanuele Filardo
2019-09-29 18:59:17 +02:00
parent 4e67bc0177
commit 91eb21d6e5
5 changed files with 69 additions and 5 deletions

View File

@ -38,6 +38,9 @@ CREATE TABLE [dbo].[Page](
[CreatedOn] [datetime] NOT NULL,
[ModifiedBy] [nvarchar](256) NOT NULL,
[ModifiedOn] [datetime] NOT NULL,
[DeletedBy] [nvarchar](256) NULL,
[DeletedOn] [datetime] NULL,
[IsDeleted][bit] NOT NULL
CONSTRAINT [PK_Page] PRIMARY KEY CLUSTERED
(
[PageId] ASC