
[cohesion].[cc_module_host]
CREATE TABLE [cohesion].[cc_module_host]
(
[module_id] [int] NOT NULL,
[host_id] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [PK__cc_module_host__52593CB8] PRIMARY KEY CLUSTERED ([module_id], [host_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [XIE1cc_module_host] ON [cohesion].[cc_module_host] ([host_id]) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [FK__cc_module__host___5441852A] FOREIGN KEY ([host_id]) REFERENCES [cohesion].[cc_host] ([host_id])
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [FK__cc_module__modul__534D60F1] FOREIGN KEY ([module_id]) REFERENCES [cohesion].[cc_module] ([module_id])
GO