[dbo].[RevenueRatingImportInvoiceOmit]
CREATE TABLE [dbo].[RevenueRatingImportInvoiceOmit]
(
[RevenueRatingImportInvoiceOmitID] [int] NOT NULL IDENTITY(1, 1),
[DistributionCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RevenueRatingImportInvoiceOmit] ADD CONSTRAINT [PK_RevenueRatingImportInvoiceOmit] PRIMARY KEY NONCLUSTERED ([RevenueRatingImportInvoiceOmitID]) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IX_RevenueRatingImportInvoiceOmit_DistCode] ON [dbo].[RevenueRatingImportInvoiceOmit] ([DistributionCode]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT INSERT ON [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT DELETE ON [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT UPDATE ON [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GO