aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/preloader/has_many.rb
blob: 72f55bc43f94da3d16137a6f9392ea2009a44044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module ActiveRecord
  module Associations
    class Preloader
      class HasMany < CollectionAssociation #:nodoc:
      end
    end
  end
end