
--Migration_RCCP_20220509_175650.txt
CREATE TABLE [dbo].[DeviceVerificationDetails] (
    [Id] [uniqueidentifier] NOT NULL DEFAULT newsequentialid(),
    [Serial] [nvarchar](max),
    [VerificationSLAStartDate] [datetime] NOT NULL,
    [TuningSLAStartDate] [datetime] NOT NULL,
    [TuningSLAEndDate] [datetime] NOT NULL,
    [LastCertifiedDate] [datetime] NOT NULL,
    [SourceOfNew] [int] NOT NULL,
    CONSTRAINT [PK_dbo.DeviceVerificationDetails] PRIMARY KEY ([Id])
)
