aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-05 16:13:40 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-04-05 16:13:40 +0900
commit824ea8d06ff596f5e60307082828745b4afd4ebf (patch)
treec56e10ec00c2f4c266929cfa67a5b1b175e34794 /activerecord/lib
parenta11ca2ff76d3e1b845282e784c3970b2ebaffd89 (diff)
downloadrails-824ea8d06ff596f5e60307082828745b4afd4ebf.tar.gz
rails-824ea8d06ff596f5e60307082828745b4afd4ebf.tar.bz2
rails-824ea8d06ff596f5e60307082828745b4afd4ebf.zip
Add missing `touch_all` delegation to relation
Follow up of #31513.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/querying.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb
index ae1501f5a1..08cfc3fe5f 100644
--- a/activerecord/lib/active_record/querying.rb
+++ b/activerecord/lib/active_record/querying.rb
@@ -10,7 +10,7 @@ module ActiveRecord
:first_or_create, :first_or_create!, :first_or_initialize,
:find_or_create_by, :find_or_create_by!, :find_or_initialize_by,
:create_or_find_by, :create_or_find_by!,
- :destroy_all, :delete_all, :update_all, :destroy_by, :delete_by,
+ :destroy_all, :delete_all, :update_all, :touch_all, :destroy_by, :delete_by,
:find_each, :find_in_batches, :in_batches,
:select, :reselect, :order, :reorder, :group, :limit, :offset, :joins, :left_joins, :left_outer_joins,
:where, :rewhere, :preload, :extract_associated, :eager_load, :includes, :from, :lock, :readonly, :extending, :or,