gitlab-org--gitlab-foss/db/migrate/20190814205640_import_commo...

14 lines
236 B
Ruby

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