15 lines
279 B
Ruby
15 lines
279 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ImportCommonMetricsKnative < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|