ActiveRecord中指定Entity的默认排序方式

class Entity < ActiveRecord::Base
    default_scope :order => 'created_at DESC'
end

编程技巧