
--Migration_RCCP_20250307_091423.txt
CREATE TABLE [dbo].[Simulations] (
    [Id] [uniqueidentifier] NOT NULL,
    [SimulationName] [nvarchar](max),
    [SimulationType] [nvarchar](max),
    [SimulationDate] [datetime] NOT NULL,
    [CompanyId] [bigint] NOT NULL,
    [CreatedByUserId] [bigint] NOT NULL,
    [CreatedUtcDateTime] [datetime] NOT NULL,
    [EntityType] [nvarchar](max),
    [EntityId] [nvarchar](max),
    [Detail] [nvarchar](max),
    CONSTRAINT [PK_dbo.Simulations] PRIMARY KEY ([Id])
)
