
--Migration_RCCP_20230816_124235.txt
CREATE TABLE [dbo].[UserComments] (
    [Id] [bigint] NOT NULL IDENTITY,
    [Type] [int] NOT NULL,
    [Comment] [nvarchar](max),
    [CreatedDateTime] [datetime] NOT NULL,
    [EntityType] [int] NOT NULL,
    [EntityId] [nvarchar](max),
    CONSTRAINT [PK_dbo.UserComments] PRIMARY KEY ([Id])
)
