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

module ActiveRecord
  module Associations
    class Preloader
      class BelongsTo < SingularAssociation #:nodoc:
      end
    end
  end
end