Flowdock
method

table_alias_for

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: JoinDependency
table_alias_for(reflection, parent, join) 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_dependency.rb, line 194
      def table_alias_for(reflection, parent, join)
        name = "#{reflection.plural_name}_#{parent.table_name}"
        name << "_join" if join
        name
      end
Register or log in to add new notes.