summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191209215316_knative_0_9_prometheus_update.rb
blob: 52127f71cd089bf0266b2520f1e35562dae34782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Knative09PrometheusUpdate < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def up
    ::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
  end

  def down
    # no-op
  end
end