
--Migration_RCCP_20240318_103227.txt
CREATE TABLE [dbo].[RecipientGroupScheduleLinks] (
    [Id] [bigint] NOT NULL IDENTITY,
    [ScheduleReportId] [bigint] NOT NULL,
    [RecipientGroupId] [bigint] NOT NULL,
    [CreatedUtcDateTime] [datetime] NOT NULL,
    CONSTRAINT [PK_dbo.RecipientGroupScheduleLinks] PRIMARY KEY ([Id])
)
