debian-mirror-gitlab/db/migrate/20200730210506_add_text_limit_to_dashboard_path.rb
2020-10-24 23:57:45 +05:30

18 lines
350 B
Ruby

# 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