I have 2 ActiveRecord objects:
Location
- id
- name
- clip_id
Clip
- id
- name
(in the interest of brevity - I have only listed properties relevant to this question)
and currently clip belongs_to location
- and this works as expected.
However, my project now necessitates that Location
needs to own 2 clips
. One that I would like to name listing_clip
and one that I would like to name description_clip
. How can I do this?