gitlab-org--gitlab-foss/db/post_migrate/20190819231552_update_knati...

14 lines
253 B
Ruby

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