
[dbo].[wsm_configuration_object]
CREATE TABLE [dbo].[wsm_configuration_object]
(
[config_profile_uuid] [binary] (16) NOT NULL,
[config_object_id] [int] NOT NULL,
[name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[templateobjectname] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_object] ADD CONSTRAINT [XPKwsm_configuration_object] PRIMARY KEY CLUSTERED ([config_object_id]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [xwsm_configuration_object] ON [dbo].[wsm_configuration_object] ([config_object_id], [config_profile_uuid]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif1wsm_configuration_object] ON [dbo].[wsm_configuration_object] ([config_profile_uuid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_object] ADD CONSTRAINT [r_1471] FOREIGN KEY ([config_profile_uuid]) REFERENCES [dbo].[wsm_configuration_profile] ([config_profile_uuid])
GO
GRANT SELECT ON [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT INSERT ON [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT DELETE ON [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT UPDATE ON [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT SELECT ON [dbo].[wsm_configuration_object] TO [wsm_ro_group]
GO