Method: Sequel::Model::Associations::ManyToManyAssociationReflection#join_table_alias

Defined in:
lib/sequel/model/associations.rb

#join_table_aliasObject Also known as: associated_key_table

The join table itself, unless it is aliased, in which case this is the alias.



1373
1374
1375
1376
1377
1378
# File 'lib/sequel/model/associations.rb', line 1373

def join_table_alias
  cached_fetch(:join_table_alias) do
    s, a = split_join_table_alias
    a || s
  end
end