
--Migration_RCCP_20250527_085549.txt
CREATE TABLE [dbo].[AnnotationHarvestJobLogs] (
    [Id] [bigint] NOT NULL IDENTITY,
    [EntityType] [nvarchar](max),
    [EntityId] [nvarchar](max),
    [EntityPath] [nvarchar](max),
    [CreatedUtcDateTime] [datetime] NOT NULL,
    [UpdatedUtcDateTime] [datetime] NOT NULL,
    [Status] [nvarchar](max),
    CONSTRAINT [PK_dbo.AnnotationHarvestJobLogs] PRIMARY KEY ([Id])
)
