
--Migration_RCCP_20240809_175030.txt
CREATE TABLE [dbo].[FloorPlanEntityLinks] (
    [ID] [bigint] NOT NULL IDENTITY,
    [FloorPlanId] [bigint] NOT NULL,
    [EntityType] [nvarchar](max),
    [EntityId] [nvarchar](max),
    CONSTRAINT [PK_dbo.FloorPlanEntityLinks] PRIMARY KEY ([ID])
)
