class Sequel::Model::Associations::OneThroughOneAssociationReflection
Public Instance Methods
Source
# File lib/sequel/model/associations.rb 1503 def default_right_key 1504 :"#{self[:name]}_id" 1505 end
one_through_one associations should not singularize the association name when creating the foreign key.
Source
# File lib/sequel/model/associations.rb 1508 def reciprocal 1509 nil 1510 end
one_through_one associations have no reciprocals