gitlab-org--gitlab-foss/db/migrate/20180831164909_import_commo...

18 lines
309 B
Ruby
Raw Normal View History

2018-09-04 09:42:58 +00:00
# frozen_string_literal: true
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