gitlab-org--gitlab-foss/db/post_migrate/20200408110856_add_nginx_fi...

14 lines
242 B
Ruby

# frozen_string_literal: true
class AddNginxFiveHundredPercentageMetric < ActiveRecord::Migration[6.0]
DOWNTIME = false
def up
::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
end
def down
# no-op
end
end