Add IDeletable to User

This commit is contained in:
Emanuele Filardo
2019-10-08 10:41:39 +02:00
parent 58427dcd62
commit 8de502e504
4 changed files with 41 additions and 3 deletions

View File

@ -94,6 +94,9 @@ CREATE TABLE [dbo].[User](
[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_User] PRIMARY KEY CLUSTERED
(
[UserId] ASC