aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-01-16 21:30:45 +0000
committerAaron Patterson <aaron.patterson@gmail.com>2011-01-16 13:43:54 -0800
commit7a3f05f43d99d9b4442e3848a308fed3cb697e3b (patch)
treee71182c45629b9b95fe491d3bcf989524e569c3b /activerecord
parentd1521719c5ac61a0c0e59827fe8cb197f5fe56f5 (diff)
downloadrails-7a3f05f43d99d9b4442e3848a308fed3cb697e3b.tar.gz
rails-7a3f05f43d99d9b4442e3848a308fed3cb697e3b.tar.bz2
rails-7a3f05f43d99d9b4442e3848a308fed3cb697e3b.zip
Add CHANGELOG entry for the addition of create_association! methods on has_one and belongs_to
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 43272160bd..d84fe655a7 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -4,6 +4,8 @@
documented as deprecated behaviour since April 2006. Please use has_many :through instead.
[Jon Leighton]
+* Added a create_association! method for has_one and belongs_to associations. [Jon Leighton]
+
* Migration files generated from model and constructive migration generators
(for example, add_name_to_users) use the reversible migration's `change`
method instead of the ordinary `up` and `down` methods. [Prem Sichanugrist]