
--Migration_RCCP_20250924_085520.txt
CREATE TABLE [dbo].[SystemAdministratorActions] (
    [Id] [bigint] NOT NULL IDENTITY,
    [ActionName] [nvarchar](max),
    [CreatedDateTime] [datetime] NOT NULL,
    CONSTRAINT [PK_dbo.SystemAdministratorActions] PRIMARY KEY ([Id])
)
CREATE TABLE [dbo].[SystemAdministratorServiceActionLinks] (
    [Id] [bigint] NOT NULL IDENTITY,
    [ServiceId] [bigint] NOT NULL,
    [ActionId] [bigint] NOT NULL,
    CONSTRAINT [PK_dbo.SystemAdministratorServiceActionLinks] PRIMARY KEY ([Id])
)
ALTER TABLE [dbo].[SystemAdministratorServiceHCs] ADD [Logs] [nvarchar](max)
