summaryrefslogtreecommitdiff
path: root/db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb')
-rw-r--r--db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb b/db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb
deleted file mode 100644
index 0562e8d1c14..00000000000
--- a/db/migrate/20200729175935_add_dashboard_path_to_prometheus_metrics.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-class AddDashboardPathToPrometheusMetrics < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- # Text limit is added in 20200730210506_add_text_limit_to_dashboard_path
- add_column :prometheus_metrics, :dashboard_path, :text # rubocop:disable Migration/AddLimitToTextColumns
- end
-
- def down
- remove_column :prometheus_metrics, :dashboard_path
- end
-end