2018-09-04 05:42:58 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class ImportCommonMetrics < ActiveRecord::Migration[4.2]
|
2018-08-31 12:53:50 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2018-09-04 16:51:02 -04:00
|
|
|
require Rails.root.join('db/importers/common_metrics_importer.rb')
|
2018-08-31 12:53:50 -04:00
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
Importers::CommonMetricsImporter.new.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# no-op
|
|
|
|
end
|
|
|
|
end
|