Rails Polymorphic Association with multiple associations on the same model

后端 未结 10 1890
无人及你
无人及你 2020-11-28 03:01

My question is essentially the same as this one: Polymorphic Association with multiple associations on the same model

However, the proposed/accepted solution does no

10条回答
  •  醉梦人生
    2020-11-28 03:58

    Can you add a SecondaryPhoto model like:

    class SecondaryPhoto < Photo
    end
    

    and then skip the :class_name from the has_one :secondary_photo?

提交回复
热议问题