[dbo].[RevenueRatingImportInvoiceFuel]
CREATE TABLE [dbo].[RevenueRatingImportInvoiceFuel]
(
[RevenueRatingImportInvoiceFuelID] [int] NOT NULL IDENTITY(1, 1),
[FuelDistributionCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CalculatedFromDistributionCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RevenueRatingImportInvoiceFuel] ADD CONSTRAINT [PK_RevenueRatingImportInvoiceFuel] PRIMARY KEY NONCLUSTERED ([RevenueRatingImportInvoiceFuelID]) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IX_RevenueRatingImportInvoiceFuel_FuelCalculatedCode] ON [dbo].[RevenueRatingImportInvoiceFuel] ([FuelDistributionCode], [CalculatedFromDistributionCode]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[RevenueRatingImportInvoiceFuel] TO [MssExec]
GRANT INSERT ON [dbo].[RevenueRatingImportInvoiceFuel] TO [MssExec]
GRANT DELETE ON [dbo].[RevenueRatingImportInvoiceFuel] TO [MssExec]
GRANT UPDATE ON [dbo].[RevenueRatingImportInvoiceFuel] TO [MssExec]
GO