20190709220014_import_common_metrics_y_axis.rb 231 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# frozen_string_literal: true

class ImportCommonMetricsYAxis < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  def up
    ::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
  end

  def down
    # no-op
  end
end