
--Migration_RCCP_20260204_085518.txt
CREATE TABLE [dbo].[EngineeringWorks] (
    [Id] [uniqueidentifier] NOT NULL DEFAULT newsequentialid(),
    [ScheduledDateTime] [datetime] NOT NULL,
    [JobName] [nvarchar](max),
    [BranchId] [bigint] NOT NULL,
    [CompanyId] [bigint] NOT NULL,
    [Type] [nvarchar](max),
    [Status] [nvarchar](max),
    [Remarks] [nvarchar](max),
    [CreatedDateTime] [datetime] NOT NULL,
    [UpdatedDateTime] [datetime],
    CONSTRAINT [PK_dbo.EngineeringWorks] PRIMARY KEY ([Id])
)
