Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/importers/common_metrics/prometheus_metric.rb')
-rw-r--r--db/importers/common_metrics/prometheus_metric.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/db/importers/common_metrics/prometheus_metric.rb b/db/importers/common_metrics/prometheus_metric.rb
deleted file mode 100644
index 9149549c750..00000000000
--- a/db/importers/common_metrics/prometheus_metric.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-module Importers
- module CommonMetrics
- class PrometheusMetric < ActiveRecord::Base
- enum group: PrometheusMetricEnums.groups
- scope :common, -> { where(common: true) }
- end
- end
-end