aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-01-03 00:30:22 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-01-03 00:30:22 +0000
commit424c3306346320c09031cbe2e4672ec7ad862c48 (patch)
tree1a8802cafaeeb7f1251f4e59341d4407922826b1 /activerecord/CHANGELOG
parent3229b59495270a094d3a0f83814f1c3d5ebec7e3 (diff)
downloadrails-424c3306346320c09031cbe2e4672ec7ad862c48.tar.gz
rails-424c3306346320c09031cbe2e4672ec7ad862c48.tar.bz2
rails-424c3306346320c09031cbe2e4672ec7ad862c48.zip
Added by parameter to increment, decrement, and their bang varieties so you can do player1.increment!(:points, 5) (closes #10542) [Sam]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8534 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 21ffbe08ae..bfbd85b548 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added by parameter to increment, decrement, and their bang varieties so you can do player1.increment!(:points, 5) #10542 [Sam]
+
* Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Closes #10605 [jamesh, fcheung, protocool]
* Don't unnecessarily load has_many associations in after_update callbacks. Closes #6822 [stopdropandrew, canadaduane]