
--Migration_RCCP_20250523_085550.txt
CREATE TABLE [dbo].[ConnectedSensors] (
    [Id] [bigint] NOT NULL IDENTITY,
    [SensorType] [nvarchar](max),
    [SensorSerial] [nvarchar](max),
    [CreatedUtcDateTime] [datetime] NOT NULL,
    [LastUpdatedDateTime] [datetime] NOT NULL,
    [FFCameraId] [bigint] NOT NULL,
    [Channel] [nvarchar](max),
    CONSTRAINT [PK_dbo.ConnectedSensors] PRIMARY KEY ([Id])
)
