Setup:
ModelA <- habtm -> ModelB <- has_many / belongs_to -> ModelC
I'd like to setup a habtm between ModelB and ModelC, I've tried
has_many :ModelA, :through => :Model3
But that doesn't seem to work. Is there a way to accomplish this?
Setup:
ModelA <- habtm -> ModelB <- has_many / belongs_to -> ModelC
I'd like to setup a habtm between ModelB and ModelC, I've tried
has_many :ModelA, :through => :Model3
But that doesn't seem to work. Is there a way to accomplish this?