CREATE TABLE [dbo].[ReportRenderType]
(
[ReportRenderTypeID] [int] NOT NULL IDENTITY(1, 1),
[ReportRenderTypeCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[ReportRenderDescription] [varchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportRenderType] ADD CONSTRAINT [PK_ReportRenderType] PRIMARY KEY CLUSTERED ([ReportRenderTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportRenderType] ADD CONSTRAINT [IX_Unique_ReportRenderTypeCode] UNIQUE NONCLUSTERED ([ReportRenderTypeCode]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ReportRenderType] TO [MssExec]
GRANT INSERT ON [dbo].[ReportRenderType] TO [MssExec]
GRANT DELETE ON [dbo].[ReportRenderType] TO [MssExec]
GRANT UPDATE ON [dbo].[ReportRenderType] TO [MssExec]
GO