method

join_table_name

rails latest stable - Class: ActiveRecord::Associations::Builder::HasAndBelongsToMany

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

join_table_name(first_table_name, second_table_name)
private

Generates a join table name from two provided table names. The names in the join table names end up in lexicographic order.

join_table_name("members", "clubs")         # => "clubs_members"
join_table_name("members", "special_clubs") # => "members_special_clubs"