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

20181006004100_import_common_metrics_nginx_vts.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b238774dcaefbdc61f45fa8d541307d49eff4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ImportCommonMetricsNginxVts < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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

  def down
    # no-op
  end
end