[dbo].[CustomerStatementStatementCycle]
CREATE TABLE [dbo].[CustomerStatementStatementCycle]
(
[CustomerStatementStatementCycleID] [int] NOT NULL IDENTITY(1, 1),
[StatementCycleID] [smallint] NULL,
[StatementCycle] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CustomerStatementStatementCycle] ADD CONSTRAINT [PK_CustomerStatementStatementCycle] PRIMARY KEY NONCLUSTERED ([CustomerStatementStatementCycleID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT INSERT ON [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT DELETE ON [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT UPDATE ON [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GO