0
다른 폴리 어소시 (poly assoc)에서 가져온 다형성 연관을 정의하는 방법이 있습니까? 그렇다면 첫 번째 폴리 어가 비어 있으면 백업 폴리 어소로 되돌아갑니다. 아마 이것처럼?레일 : 중복 다형성 연관에 폴백을 사용할 수 있습니까?
class Reservation < ActiveRecord::Base
has_many :trip_itinerary_entries, :through => :trips, :source => :itinerary_entries
has_many :template_itinerary_entries, :through => :templates, :source => :itinerary_entries
has_many :entries, :from => :trip_itinerary_entries, :backup => :template_itinerary_entries
고마워요!