
--Migration_RCCP_20220822_120330.txt
CREATE TABLE [dbo].[AreaUsageSessionsSummaries] (
    [MeetingId] [bigint] NOT NULL IDENTITY,
    [AreaId] [bigint] NOT NULL,
    [SessionId] [bigint] NOT NULL,
    [BookingId] [bigint] NOT NULL,
    [MeetingStartDateTime] [datetime] NOT NULL,
    [MeetingEndDateTime] [datetime] NOT NULL,
    [MeetingDuration] [int] NOT NULL,
    [MeetingStatus] [nvarchar](max),
    [MeetingAvgOccupancy] [int] NOT NULL,
    CONSTRAINT [PK_dbo.AreaUsageSessionsSummaries] PRIMARY KEY ([MeetingId])
)
