You need to add
has_many :entries
To each of your models, since the :through option just specifies a second association which it should use to find the other side.
You need to add
has_many :entries
To each of your models, since the :through option just specifies a second association which it should use to find the other side.