[dbo].[ShipmentStatusAction]
CREATE TABLE [dbo].[ShipmentStatusAction]
(
[ShipmentStatusActionID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShipmentStatusAction] ADD CONSTRAINT [PK_ShipmentStatusAction] PRIMARY KEY NONCLUSTERED ([ShipmentStatusActionID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShipmentStatusAction] ADD CONSTRAINT [IX_ShipmentStatusAction_Description] UNIQUE NONCLUSTERED ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ShipmentStatusAction] TO [MssExec]
GRANT INSERT ON [dbo].[ShipmentStatusAction] TO [MssExec]
GRANT DELETE ON [dbo].[ShipmentStatusAction] TO [MssExec]
GRANT UPDATE ON [dbo].[ShipmentStatusAction] TO [MssExec]
GO
EXEC sp_addextendedproperty N'Description', N'Holds a vanline shipment status action.', 'SCHEMA', N'dbo', 'TABLE', N'ShipmentStatusAction', NULL, NULL
GO
EXEC sp_addextendedproperty N'Description', N'Description of a shipment status action.', 'SCHEMA', N'dbo', 'TABLE', N'ShipmentStatusAction', 'COLUMN', N'Description'
GO
EXEC sp_addextendedproperty N'Description', N'Primary key of the ShipmentStatusAction table.', 'SCHEMA', N'dbo', 'TABLE', N'ShipmentStatusAction', 'COLUMN', N'ShipmentStatusActionID'
GO