aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-01-16 18:55:35 +0100
committerXavier Noria <fxn@hashref.com>2011-01-16 18:55:35 +0100
commit15e71347f6e018b10b9d93a40f7ab9da824bf09d (patch)
tree8fe7e70ecb2ab0a6aabcf13dfa51086613c3d5eb
parentbbcdc864a693fc7a5cdaa82829cd6c1efac16ef1 (diff)
downloadrails-15e71347f6e018b10b9d93a40f7ab9da824bf09d.tar.gz
rails-15e71347f6e018b10b9d93a40f7ab9da824bf09d.tar.bz2
rails-15e71347f6e018b10b9d93a40f7ab9da824bf09d.zip
updates AR's CHANGELOG with changes in 9e64dfa and ad343d7
-rw-r--r--activerecord/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index aa447ce992..1d2f814d32 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,9 @@
*Rails 3.1.0 (unreleased)*
+* 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]
+
* Removed support for interpolated SQL conditions. Please use scoping
along with attribute conditionals as a replacement.