え、こんなコトできるの?っていうやつ。 環境 $ bin/rails -v Rails 5.2.2 やり方 has_manyのあとにorderをあしらう has_many :対象モデル, -> { order("order by のあとのSQL文章") } 例 今回のモデル # == Schema Information # # Table name: users # # id :bigint(8) not null, primary key # name :string(255) # created_at :datetime not null # updated_at :datetime not null # class User < ApplicationRecord # 名前の順にしたい has_many :message, -> { order("name desc") } has