Flowdock
method

column_for

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Calculations
column_for(field) 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/relation/calculations.rb, line 257
    def column_for(field)
      field_name = field.to_s.split('.').last
      @klass.columns.detect { |c| c.name.to_s == field_name }
    end
Register or log in to add new notes.