
--Migration_RCCP_20260424_085616.txt
CREATE TABLE [dbo].[VlmMetrics] (
    [Id] [bigint] NOT NULL IDENTITY,
    [MetricId] [bigint] NOT NULL,
    [MetricType] [bigint] NOT NULL,
    [Name] [nvarchar](max),
    [Description] [nvarchar](max),
    [CompanyId] [bigint] NOT NULL,
    [CreatedUtcDateTime] [datetime] NOT NULL,
    CONSTRAINT [PK_dbo.VlmMetrics] PRIMARY KEY ([Id])
)
