Displaying 1 result from an estimated 1 matches for "savedproperty".
Did you mean:
saved_property
2006 Aug 16
0
2 models with multiple relationships
...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: could I be doing something better to make these
relatioships seemless? Should I use single-table-inheritance with the
User in order to give users specific roles (even th...