aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/querying.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-05 17:59:47 +0900
committerGitHub <noreply@github.com>2019-04-05 17:59:47 +0900
commit902c06f8355adce4109fde76680d956b16428166 (patch)
tree69be812c997390b9645b5c282c0c87f28388c72a /activerecord/lib/active_record/querying.rb
parentbd1e9a1b98d1a3fcd419e4f975f7efa012b6f399 (diff)
parent824ea8d06ff596f5e60307082828745b4afd4ebf (diff)
downloadrails-902c06f8355adce4109fde76680d956b16428166.tar.gz
rails-902c06f8355adce4109fde76680d956b16428166.tar.bz2
rails-902c06f8355adce4109fde76680d956b16428166.zip
Merge pull request #35871 from kamipo/klass_level_touch_all
Add missing `touch_all` delegation to relation
Diffstat (limited to 'activerecord/lib/active_record/querying.rb')
-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,