aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2014-10-14 07:04:01 -0600
committerSean Griffin <sean@seantheprogrammer.com>2014-10-14 07:04:01 -0600
commite5c46246a2dff0e90950c537f12fb93d7452edaf (patch)
tree658ed5be0bd73ac19ff065951742ba4ef9cb849b
parentc9504753504fbcbf68f870376f218cdd17cae0a0 (diff)
parent531a9d25dde7c6604cd752a740e844772aa96c42 (diff)
downloadrails-e5c46246a2dff0e90950c537f12fb93d7452edaf.tar.gz
rails-e5c46246a2dff0e90950c537f12fb93d7452edaf.tar.bz2
rails-e5c46246a2dff0e90950c537f12fb93d7452edaf.zip
Merge pull request #17252 from Bounga/update_all_doc_clarification
[ci skip] Clarify `#update_all` doc about values processing
-rw-r--r--activerecord/lib/active_record/relation.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb
index ad54d84665..dadc3c1eeb 100644
--- a/activerecord/lib/active_record/relation.rb
+++ b/activerecord/lib/active_record/relation.rb
@@ -305,7 +305,8 @@ module ActiveRecord
# Updates all records with details given if they match a set of conditions supplied, limits and order can
# also be supplied. This method constructs a single SQL UPDATE statement and sends it straight to the
# database. It does not instantiate the involved models and it does not trigger Active Record callbacks
- # or validations.
+ # or validations. Values passed to `update_all` will not go through ActiveRecord's type-casting behavior.
+ # It should receive only values that can be passed as-is to the SQL database.
#
# ==== Parameters
#