Monkeypatch ActiveRecord para que .find_each vá em ordem decrescente por id

module ActiveRecord
module Batches
def batch_order
"#{quoted_table_name}.#{quoted_primary_key} DESC"
end
end
end