[dbo].[ReductionTemplateRateLookupBasis]
CREATE TABLE [dbo].[ReductionTemplateRateLookupBasis]
(
[ReductionTemplateRateLookupBasisID] [int] NOT NULL IDENTITY(1, 1),
[BasisName] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionTemplateRateLookupBasis] ADD CONSTRAINT [PK_ReductionTemplateRateLookupBasis] PRIMARY KEY NONCLUSTERED ([ReductionTemplateRateLookupBasisID]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT INSERT ON [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT DELETE ON [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT UPDATE ON [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GO