gitlab-org--gitlab-foss/db/post_migrate/20190918104222_schedule_pro...

16 lines
265 B
Ruby

# frozen_string_literal: true
class ScheduleProductivityAnalyticsBackfill < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
# no-op since the migration was removed
end
def down
# no-op
end
end