summaryrefslogtreecommitdiff
path: root/db/migrate/20190709220014_import_common_metrics_y_axis.rb
blob: 89ecf32ecc15c0d55445e682dcc3f418c032e43b (plain)
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