[dbo].[ValuationPerPound]
CREATE TABLE [dbo].[ValuationPerPound]
(
[ValuationPerPoundID] [int] NOT NULL IDENTITY(1, 1),
[Amount] [money] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ValuationPerPound] ADD CONSTRAINT [PK_ValuationPerPound] PRIMARY KEY NONCLUSTERED ([ValuationPerPoundID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ValuationPerPound] ADD CONSTRAINT [IX_ValuationPerPound_Amount] UNIQUE NONCLUSTERED ([Amount]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ValuationPerPound] TO [MssExec]
GRANT INSERT ON [dbo].[ValuationPerPound] TO [MssExec]
GRANT DELETE ON [dbo].[ValuationPerPound] TO [MssExec]
GRANT UPDATE ON [dbo].[ValuationPerPound] TO [MssExec]
GO