
--Migration_RCCP_20251128_085518.txt
CREATE TABLE [dbo].[ProcessedAnchorPointsCollections] (
    [Id] [bigint] NOT NULL IDENTITY,
    [FloorplanId] [bigint] NOT NULL,
    [UserId] [bigint],
    [CreatedUTCDateTime] [datetime] NOT NULL,
    [LastUpdatedUTCDateTime] [datetime] NOT NULL,
    [ProcessedOutput] [nvarchar](max),
    CONSTRAINT [PK_dbo.ProcessedAnchorPointsCollections] PRIMARY KEY ([Id])
)
