[dbo].[AccountingCustomerAddressType]
CREATE TABLE [dbo].[AccountingCustomerAddressType]
(
[AccountingCustomerAddressTypeId] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [nvarchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerAddressType] ADD CONSTRAINT [PK_AccountingCustomerAddressType] PRIMARY KEY NONCLUSTERED ([AccountingCustomerAddressTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerAddressType] ADD CONSTRAINT [IX_AccountingCustomerAddressType_TypeName] UNIQUE CLUSTERED ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT INSERT ON [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT DELETE ON [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountingCustomerAddressType] TO [MssExec]
GO