[dbo].[CustomerStatementTitle]
CREATE TABLE [dbo].[CustomerStatementTitle]
(
[CustomerStatementTitleID] [int] NOT NULL IDENTITY(1, 1),
[Title] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CustomerStatementTitle] ADD CONSTRAINT [PK_CustomerStatementTitle] PRIMARY KEY NONCLUSTERED ([CustomerStatementTitleID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT INSERT ON [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT DELETE ON [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT UPDATE ON [dbo].[CustomerStatementTitle] TO [MssExec]
GO