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