From 3f16f5b7a0034ec4730b73b673fcebcb4465107f Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Wed, 11 Jan 2012 23:52:01 -0200 Subject: [PATCH] Add CHANGELOG entry --- activerecord/CHANGELOG.md | 3 +++ railties/guides/source/3_2_release_notes.textile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index cd8e50b33a..9551987de1 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -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). 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 ActiveRecord::Relation#explain. * Implements AR::Base.silence_auto_explain which allows the user to selectively disable automatic EXPLAINs within a block.