Last Updated: February 25, 2016
·
578
· jraines

Monkeypatch ActiveRecord so .find_each goes in descending order by id

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