views:

634

answers:

1
+10  A: 

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.

Jon Wood