
[dbo].[usm_slo_threshold]
CREATE TABLE [dbo].[usm_slo_threshold]
(
[slo_threshold_id] [int] NOT NULL,
[slo_instance_id] [int] NULL,
[threshold] [float] NULL,
[threshold_type] [int] NULL,
[threshold_order] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_slo_threshold] ADD CONSTRAINT [XPKusm_slo_threshold] PRIMARY KEY CLUSTERED ([slo_threshold_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_SLO_THRESHOLD_SLOINST] ON [dbo].[usm_slo_threshold] ([slo_instance_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_slo_threshold] ADD CONSTRAINT [$usm_s_r00002da100000000] FOREIGN KEY ([slo_instance_id]) REFERENCES [dbo].[usm_slo_instance] ([slo_instance_id])
GO
GRANT SELECT ON [dbo].[usm_slo_threshold] TO [usmgroup]
GRANT INSERT ON [dbo].[usm_slo_threshold] TO [usmgroup]
GRANT DELETE ON [dbo].[usm_slo_threshold] TO [usmgroup]
GRANT UPDATE ON [dbo].[usm_slo_threshold] TO [usmgroup]
GO