Displaying 1 result from an estimated 1 matches for "saved_property".
2006 Aug 16
0
2 models with multiple relationships
...favorites list (he is a 
buyer/seeker)
A user can have many properties that he manages (he is a listing 
manager)
    * A listing manager actually has control over counties
      so if a property shows up in that county, it is his.
Property has_one seller
Property has_many watchers :through => :saved_property
Property has_one listing manager
I am just wanting to make sure that none of the lovely Rails features 
override each other. I already made a join model for SavedProperty, and 
the relationship with the listing manager could be joined through a 
table that lists the counties.
My main question is:...