
--Migration_RCCP_20241018_122854.txt
CREATE TABLE [dbo].[BranchSettings] (
    [Id] [bigint] NOT NULL IDENTITY,
    [branchId] [bigint] NOT NULL,
    [StaffExclusion] [bit] NOT NULL,
    [Mode] [nvarchar](max),
    CONSTRAINT [PK_dbo.BranchSettings] PRIMARY KEY ([Id])
)
