1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

updates AR's CHANGELOG with changes in 9e64dfa and ad343d7

This commit is contained in:
Xavier Noria 2011-01-16 18:55:35 +01:00
parent bbcdc864a6
commit 15e71347f6

View file

@ -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.