私にとって、これは.reverse
対についてです.order('id DESC')
私が持っている場合
history = where(user_id: user).order('id DESC')
私はまだ次のような別のクエリを実行できますhistory.where(person_id: person)
私が持っている場合
history = where(user_id: user).reverse
私は得る:NoMethodError: undefined method 'where' for #<Array:0x000001031a3408>
これは、これらの関数が使用する配列タイプ(連想配列と通常の配列)によって異なるためですか?私のオプションは何ですか?