aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorsaksmlz <saksmlz@gmail.com>2012-10-31 12:59:11 +0300
committersaksmlz <saksmlz@gmail.com>2012-10-31 12:59:11 +0300
commit68307a1ae5fc9e454230629f5cbbbeaf79fd7cec (patch)
tree04391b5cf1b12eaad2ddb92aa9cbf49d1dc0b68c /activerecord/lib
parentd5b275db5c20669a7a9e598a70decf1316b39e03 (diff)
downloadrails-68307a1ae5fc9e454230629f5cbbbeaf79fd7cec.tar.gz
rails-68307a1ae5fc9e454230629f5cbbbeaf79fd7cec.tar.bz2
rails-68307a1ae5fc9e454230629f5cbbbeaf79fd7cec.zip
Fix ActiveRecord#update_column return value
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/persistence.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index d492ac7f16..fd3380a53c 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -194,7 +194,7 @@ module ActiveRecord
raise ActiveRecordError, "#{name} is marked as readonly" if self.class.readonly_attributes.include?(name)
raise ActiveRecordError, "can not update on a new record object" unless persisted?
- updated_count = self.class.update_all({ name => value }, self.class.primary_key => id) == 1
+ updated_count = self.class.update_all({ name => value }, self.class.primary_key => id)
raw_write_attribute(name, value)