Add IDeleteable to Site

This commit is contained in:
Emanuele Filardo
2019-10-05 23:44:55 +02:00
parent ca8bf0b6d9
commit d2cd9095de
2 changed files with 9 additions and 1 deletions

View File

@ -14,6 +14,9 @@ CREATE TABLE [dbo].[Site](
[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_Site] PRIMARY KEY CLUSTERED
(
[SiteId] ASC