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

20180831164909_import_common_metrics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adb35a9b2114c8a7dcd7c9e89d83128c49532039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ImportCommonMetrics < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  require_relative '../importers/common_metrics_importer.rb'

  DOWNTIME = false

  def up
    Importers::CommonMetricsImporter.new.execute
  end

  def down
    # no-op
  end
end