Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190709220014_import_common_metrics_y_axis.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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