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

Add CHANGELOG entry

This commit is contained in:
Santiago Pastorino 2012-01-11 23:52:01 -02:00
parent 61c5b4a9f6
commit 838d30f182
2 changed files with 5 additions and 0 deletions

View file

@ -40,6 +40,9 @@
## Rails 3.2.0 (unreleased) ##
* 'on' and 'ON' boolean columns values are type casted to true
*Santiago Pastorino*
* Added ability to run migrations only for given scope, which allows
to run migrations only from one engine (for example to revert changes
from engine that you want to remove).

View file

@ -264,6 +264,8 @@ h5. Deprecations
h3. Active Record
* 'on' and 'ON' boolean columns values are type casted to true
* Implemented <tt>ActiveRecord::Relation#explain</tt>.
* Implements <tt>AR::Base.silence_auto_explain</tt> which allows the user to selectively disable automatic EXPLAINs within a block.