私は次の2つのモデルを持っています:
class Shelf < ActiveRecord::Model
has_many :wines
def self.order_by_oldest_bottle_of_wine
#TODO: order by the oldest wine bottle...
end
end
class Wine < ActiveRecord::Model
belongs_to :shelf
attr_accessible :produce_date
end
棚モデルでは、棚の中で最も古いワインボトル(つまり、最も古いワインボトルが最初にある棚)で棚を注文したいのですが、実装が100%確実ではありません。
どうもありがとう、