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/migrate/20200730210506_add_text_limit_to_dashboard_path.rb')
-rw-r--r--db/migrate/20200730210506_add_text_limit_to_dashboard_path.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20200730210506_add_text_limit_to_dashboard_path.rb b/db/migrate/20200730210506_add_text_limit_to_dashboard_path.rb
deleted file mode 100644
index a236cc68988..00000000000
--- a/db/migrate/20200730210506_add_text_limit_to_dashboard_path.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddTextLimitToDashboardPath < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_text_limit(:prometheus_metrics, :dashboard_path, 2048)
- end
-
- def down
- remove_text_limit(:prometheus_metrics, :dashboard_path)
- end
-end