
[dbo].[usm_link_profile_hosts]
CREATE TABLE [dbo].[usm_link_profile_hosts]
(
[collection_profile_id] [int] NOT NULL,
[target_host_id] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [XPKusm_link_profile_hosts] PRIMARY KEY CLUSTERED ([collection_profile_id], [target_host_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [$usm_l_r000024f500000000] FOREIGN KEY ([target_host_id]) REFERENCES [dbo].[usm_host] ([host_id])
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [$usm_l_r000024ff00000000] FOREIGN KEY ([collection_profile_id]) REFERENCES [dbo].[usm_collection_profile] ([collection_profile_id])
GO
GRANT SELECT ON [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT INSERT ON [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT DELETE ON [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT UPDATE ON [dbo].[usm_link_profile_hosts] TO [usmgroup]
GO