summaryrefslogtreecommitdiff
path: root/db/migrate/20181006004100_import_common_metrics_nginx_vts.rb
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