Flowdock
method

table_alias_for

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: JoinHelper
table_alias_for(reflection, join = false) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/join_helper.rb, line 34
      def table_alias_for(reflection, join = false)
        name = "#{reflection.plural_name}_#{alias_suffix}"
        name << "_join" if join
        name
      end
Register or log in to add new notes.