Flowdock
method

arel_attribute

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: TableMetadata
arel_attribute(column_name) public

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/table_metadata.rb, line 24
    def arel_attribute(column_name)
      if klass
        klass.arel_attribute(column_name, arel_table)
      else
        arel_table[column_name]
      end
    end
Register or log in to add new notes.