aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/persistence.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2018-02-26 11:25:45 -0700
committerSean Griffin <sean@seantheprogrammer.com>2018-02-26 11:25:45 -0700
commitc2a2b84d8d9185127d59a4760efb7356aea25af1 (patch)
tree83c955338a10cda4583675e64dd73fe719a5de9b /activerecord/lib/active_record/persistence.rb
parent948b931925febac3c965ab13470065ced68f7b53 (diff)
downloadrails-c2a2b84d8d9185127d59a4760efb7356aea25af1.tar.gz
rails-c2a2b84d8d9185127d59a4760efb7356aea25af1.tar.bz2
rails-c2a2b84d8d9185127d59a4760efb7356aea25af1.zip
Ensure we don't write virtual attributes on update, too
See 948b931925febac3c965ab13470065ced68f7b53 for context
Diffstat (limited to 'activerecord/lib/active_record/persistence.rb')
-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 0b1000fcf9..4eecbd0629 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -703,7 +703,7 @@ module ActiveRecord
# Updates the associated record with values matching those of the instance attributes.
# Returns the number of affected rows.
- def _update_record(attribute_names = self.column_names)
+ def _update_record(attribute_names = self.attribute_names)
attribute_names &= self.class.column_names
attributes_values = arel_attributes_with_values_for_update(attribute_names)
if attributes_values.empty?