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

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