Add CHANGELOG entry

This commit is contained in:
Santiago Pastorino
2012-01-11 23:52:01 -02:00
parent fc74a51c3f
commit 3f16f5b7a0
2 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
## 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.