[dbo].[AccountProfileServiceStatus]
This table contains values that can be assigned to an account profile service override
CREATE TABLE [dbo].[AccountProfileServiceStatus]
(
[AccountProfileServiceStatusID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[AccountProfileServiceStatusBookmarkGroupFID] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatus] ADD CONSTRAINT [PK_AccountProfileServiceStatus] PRIMARY KEY NONCLUSTERED ([AccountProfileServiceStatusID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatus] ADD CONSTRAINT [FK_AccountProfileServicesStatus_AccountProfileServiceStatusBookmarkGroup] FOREIGN KEY ([AccountProfileServiceStatusBookmarkGroupFID]) REFERENCES [dbo].[AccountProfileServiceStatusBookmarkGroup] ([AccountProfileServiceStatusBookmarkGroupID])
GO
GRANT SELECT ON [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT INSERT ON [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT DELETE ON [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountProfileServiceStatus] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'This table contains values that can be assigned to an account profile service override', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', NULL, NULL
GO
EXEC sp_addextendedproperty N'MS_Description', N'Primary key of this table', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', 'COLUMN', N'AccountProfileServiceStatusID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'Text that can be used to describe a service status override state, such as "Approved" and "Not Approved"', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', 'COLUMN', N'Name'
GO