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: 98fafed7912896e4e84b9b76f567a54f6656796d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ImportCommonMetricsNginxVts < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  require Rails.root.join('db/importers/common_metrics_importer.rb')

  DOWNTIME = false

  def up
    Importers::CommonMetricsImporter.new.execute
  end

  def down
    # no-op
  end
end