Displaying 1 result from an estimated 1 matches for "subscriber_subscript".
2006 May 23
2
has_many :through extra domain model question
If I have a model called Newsletter with:
has_many :subscribers, :through => :subscriptions
and wanted to list all the subscribers, but show what level their
subscriptions was (level is in subscriptions table), how would I best do
that?
Do I have to use my own select to get what I want or are the attributes
from subscriptions available to me through the join somehow (I am
suspecting not)?