CREATE TABLE [dbo].[ReportType]
(
[ReportTypeID] [smallint] NOT NULL IDENTITY(1, 1),
[ReportTypeName] [varchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportType] ADD CONSTRAINT [PK_ReportType] PRIMARY KEY CLUSTERED ([ReportTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[ReportType] TO [MssExec]
GRANT INSERT ON [dbo].[ReportType] TO [MssExec]
GRANT DELETE ON [dbo].[ReportType] TO [MssExec]
GRANT UPDATE ON [dbo].[ReportType] TO [MssExec]
GO