Displaying 1 result from an estimated 1 matches for "person_addresses".
Did you mean:
persons_addresses
2005 May 13
17
modeling...
I''ve tried tackling this many ways on my own and can''t find a good solution:
Breaking it down to something simplier...
Venue
has one address
Person
has one address
Address
belongs to state
Assuming I don''t want to do tables for venue_addresses and person_addresses.
What is the best way to model this using rails... big thing here is i
want to be able
to reuse a partial for creating/modeling an address.
I tried doing it where... ugly as it is... venue and person have the
address id
so it becomes a belongs_to but that is really a lie and a hack and leads
t...