投稿モデルにこのスコープがあります
scope :tynewydd_posts, :include => :department, :conditions => {"departments.name" => "Ty Newydd"}
返された結果を作成した順に並べたいので最新の投稿が先
私は試した
scope :tynewydd_posts, :include => :department, :conditions => {"departments.name" => "Ty Newydd"}.order("posts.created_at DESC")
しかし、未定義のメソッド順序:ハッシュを取得するので、ここではこのメソッドを使用できないと思いますか?