[dbo].[VanlineAddressType]
CREATE TABLE [dbo].[VanlineAddressType]
(
[VanlineAddressTypeID] [int] NOT NULL IDENTITY(1, 1),
[VanlineAddressType] [varchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VanlineAddressType] ADD CONSTRAINT [PK_VanlineAddressType] PRIMARY KEY CLUSTERED ([VanlineAddressTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VanlineAddressType] ADD CONSTRAINT [IX_Unique_VanlineAddressType] UNIQUE NONCLUSTERED ([VanlineAddressType]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[VanlineAddressType] TO [MssExec]
GRANT INSERT ON [dbo].[VanlineAddressType] TO [MssExec]
GRANT DELETE ON [dbo].[VanlineAddressType] TO [MssExec]
GRANT UPDATE ON [dbo].[VanlineAddressType] TO [MssExec]
GO