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

20190814205640_import_common_metrics_line_charts.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c28d686a428fb358ea7856f1dc3d680bdb188b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class ImportCommonMetricsLineCharts < ActiveRecord::Migration[5.2]
  DOWNTIME = false

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

  def down
    # no-op
  end
end