CREATE TABLE [dbo].[ReductionProfile]
(
[ReductionProfileID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[IgnoreVLReductions] [bit] NOT NULL CONSTRAINT [DF_ReductionProfile_IgnoreVLReductions] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionProfile] ADD CONSTRAINT [PK_ReductionProfile] PRIMARY KEY CLUSTERED ([ReductionProfileID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionProfile] ADD CONSTRAINT [IX_ReductionProfile_Description] UNIQUE NONCLUSTERED ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ReductionProfile] TO [MssExec]
GRANT INSERT ON [dbo].[ReductionProfile] TO [MssExec]
GRANT DELETE ON [dbo].[ReductionProfile] TO [MssExec]
GRANT UPDATE ON [dbo].[ReductionProfile] TO [MssExec]
GO