17 lines
329 B
Ruby
17 lines
329 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ImportCommonMetricsKnative < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
require Rails.root.join('db/importers/common_metrics_importer.rb')
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
Importers::CommonMetricsImporter.new.execute
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|