提交 b014b4e8 编写于 作者: N Nick Quaranto

Rails 4 has deprecated :order in has_many to use a lambda instead, update the guide accordingly

上级 7ead1d81
......@@ -732,7 +732,7 @@ The `reorder` method overrides the default scope order. For example:
class Post < ActiveRecord::Base
..
..
has_many :comments, order: 'posted_at DESC'
has_many :comments, -> { order('posted_at DESC') }
end
Post.find(10).comments.reorder('name')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册