I'm trying to build the association between my "homes" table and "furniture" table.
Basically, a home can have multiple furniture, so I have a home_furniture_bridge table that looks like this:
home_id | furniture_id
Obviously, the relationship with home to home_furniture_bridge is irrelevant, it's the relationship between home and furniture that matters. How would this association be depicted in PHP ActiveRecord?
Edit: Currently I have a home.php model and a furniture.php model. I wouldn't need a home_furniture_bridge model would I?