Missed changelog entry for :inverse_of

This commit is contained in:
Jeremy Kemper 2009-12-21 13:18:11 -08:00
parent f09ad263ca
commit bf03ddc636
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
*Edge*
* Association inverses for belongs_to, has_one, and has_many. Optimization to reduce database queries. #3533 [Murray Steele]
# post.comments sets each comment's post without needing to :include
class Post < ActiveRecord::Base
has_many :comments, :inverse_of => :post
end
* MySQL: add_ and change_column support positioning. #3286 [Ben Marini]
* Reset your Active Record counter caches with the reset_counter_cache class method. #1211 [Mike Breen, Gabe da Silveira]