aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-11 23:52:01 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-11 23:52:57 -0200
commit838d30f182b1fa0cabd977e98fc47b4adb2064e4 (patch)
treeace11342c3c76a0016f8b1dcbc66660a1486ef10
parent61c5b4a9f6b953dd3f027b1a24c5526771bf8968 (diff)
downloadrails-838d30f182b1fa0cabd977e98fc47b4adb2064e4.tar.gz
rails-838d30f182b1fa0cabd977e98fc47b4adb2064e4.tar.bz2
rails-838d30f182b1fa0cabd977e98fc47b4adb2064e4.zip
Add CHANGELOG entry
-rw-r--r--activerecord/CHANGELOG.md3
-rw-r--r--railties/guides/source/3_2_release_notes.textile2
2 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 9c9314ec20..4b1b3bda0e 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -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).
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index b65daece91..eb816f70c4 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -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.