class Sequel::Model::Associations::OneThroughOneAssociationReflection

  1. lib/sequel/model/associations.rb

Methods

Public Instance

  1. default_right_key
  2. reciprocal

Public Instance methods

default_right_key()

one_through_one associations should not singularize the association name when creating the foreign key.

[show source]
     # File lib/sequel/model/associations.rb
1488 def default_right_key
1489   :"#{self[:name]}_id"
1490 end
reciprocal()

one_through_one associations have no reciprocals

[show source]
     # File lib/sequel/model/associations.rb
1493 def reciprocal
1494   nil
1495 end