
[dbo].[usm_slo_template_sla_config]
CREATE TABLE [dbo].[usm_slo_template_sla_config]
(
[slo_template_id] [int] NOT NULL,
[sla_config_id] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[aggregation_type] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_slo_template_sla_config] ADD CONSTRAINT [XPKusm_slo_template_sla_config] PRIMARY KEY CLUSTERED ([slo_template_id], [sla_config_id], [aggregation_type]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_slo_template_sla_config] ADD CONSTRAINT [$usm_s_r00002bb700000000] FOREIGN KEY ([sla_config_id]) REFERENCES [dbo].[usm_sla_config] ([sla_config_id])
GO
ALTER TABLE [dbo].[usm_slo_template_sla_config] ADD CONSTRAINT [$usm_s_r00002bc100000000] FOREIGN KEY ([slo_template_id]) REFERENCES [dbo].[usm_slo_template] ([slo_template_id])
GO
ALTER TABLE [dbo].[usm_slo_template_sla_config] ADD CONSTRAINT [$usm_s_r0000305300000000] FOREIGN KEY ([slo_template_id]) REFERENCES [dbo].[usm_slo_template] ([slo_template_id])
GO
GRANT SELECT ON [dbo].[usm_slo_template_sla_config] TO [usmgroup]
GRANT INSERT ON [dbo].[usm_slo_template_sla_config] TO [usmgroup]
GRANT DELETE ON [dbo].[usm_slo_template_sla_config] TO [usmgroup]
GRANT UPDATE ON [dbo].[usm_slo_template_sla_config] TO [usmgroup]
GO