debian-mirror-gitlab/db/post_migrate/20200408110856_add_nginx_five_hundred_percentage_metric.rb
2020-04-22 19:07:51 +05:30

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