[dbo].[AccountProfileAvailableServices]
This table provides a list of services that can be assigned to a national account
CREATE TABLE [dbo].[AccountProfileAvailableServices]
(
[AccountProfileAvailableServiceID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileAvailableServices] ADD CONSTRAINT [PK_AccountProfileAvailableServices] PRIMARY KEY NONCLUSTERED ([AccountProfileAvailableServiceID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT INSERT ON [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT DELETE ON [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountProfileAvailableServices] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'This table provides a list of services that can be assigned to a national account', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', NULL, NULL
GO
EXEC sp_addextendedproperty N'MS_Description', N'Primary key of this table', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', 'COLUMN', N'AccountProfileAvailableServiceID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'The text description of the service to be available for assignment to a national account', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', 'COLUMN', N'Name'
GO