In my Rails app have a default scope that looks like this:
default_scope order: \'external_updated_at DESC\'
I have now upgraded to Rails 4
This also worked for me:
default_scope { order('created_at DESC') }