Flowdock
method

column_for

Importance_0
v3.2.8 - 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 327
    def column_for(field)
      field_name = field.respond_to?(:name) ? field.name.to_s : field.to_s.split('.').last
      @klass.columns.detect { |c| c.name.to_s == field_name }
    end
Register or log in to add new notes.