aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-30 01:41:09 -0800
committerJon Leighton <j@jonathanleighton.com>2011-11-30 01:41:09 -0800
commit271308cb9617b86cd4de20b629be504b48aea537 (patch)
treed713dd695abdcb09f1c191f1844166a27bf8ba38 /activerecord/CHANGELOG.md
parent38ab982cfff98570b5f12933cff489364845789c (diff)
parenta382d60f6abc94b6a965525872f858e48abc00de (diff)
downloadrails-271308cb9617b86cd4de20b629be504b48aea537.tar.gz
rails-271308cb9617b86cd4de20b629be504b48aea537.tar.bz2
rails-271308cb9617b86cd4de20b629be504b48aea537.zip
Merge pull request #1915 from bogdan/active_record_map
ActiveRecord::Base.map method for direct select by single column
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 1a95b8e95e..f798b03ea1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,14 @@
## Rails 3.2.0 (unreleased) ##
+
+* Implemented ActiveRecord::Relation#pluck method
+
+ Method returns Array of column value from table under ActiveRecord model
+
+ Client.pluck(:id)
+
+ *Bogdan Gusiev*
+
* Automatic closure of connections in threads is deprecated. For example
the following code is deprecated: