When you use uuid some methods stop to work as expected. Using this concern in your models will do the job. All you need to do is:
1 - Copy this file to models/concerns 2 - In all your models use this concern just, like this
class Client < ActiveRecord::Base
include Findable
end
@lypborges
Any reason
default_scope { order(:created_at) }
wouldn't work?This seems to be working well for me: