[dbo].[PlasticBatchStatus]
CREATE TABLE [dbo].[PlasticBatchStatus]
(
[BatchStatusID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PlasticBatchStatus] ADD CONSTRAINT [PK_PlasticBatchStatus] PRIMARY KEY CLUSTERED ([BatchStatusID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PlasticBatchStatus] ADD CONSTRAINT [IX_PlasticBatchStatus_Description] UNIQUE NONCLUSTERED ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[PlasticBatchStatus] TO [MssExec]
GRANT INSERT ON [dbo].[PlasticBatchStatus] TO [MssExec]
GRANT DELETE ON [dbo].[PlasticBatchStatus] TO [MssExec]
GRANT UPDATE ON [dbo].[PlasticBatchStatus] TO [MssExec]
GO