[dbo].[OrderLocationAddressType]
CREATE TABLE [dbo].[OrderLocationAddressType]
(
[OrderLocationAddressTypeID] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[OrderLocationAddressType] ADD CONSTRAINT [PK_OrderLocationAddressType] PRIMARY KEY CLUSTERED ([OrderLocationAddressTypeID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[OrderLocationAddressType] ADD CONSTRAINT [IX_OrderLocationAddressType_TypeName] UNIQUE NONCLUSTERED ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[OrderLocationAddressType] TO [MssExec]
GRANT INSERT ON [dbo].[OrderLocationAddressType] TO [MssExec]
GRANT DELETE ON [dbo].[OrderLocationAddressType] TO [MssExec]
GRANT UPDATE ON [dbo].[OrderLocationAddressType] TO [MssExec]
GO