method

arel_attribute

arel_attribute(name, table = arel_table)
public

No documentation available.

# File activerecord/lib/active_record/core.rb, line 270
      def arel_attribute(name, table = arel_table) # :nodoc:
        name = name.to_s
        name = attribute_aliases[name] || name
        table[name]
      end