Flowdock
method

_field_changed?

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods::Dirty
_field_changed?(attr, old, value) 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/attribute_methods/dirty.rb, line 80
      def _field_changed?(attr, old, value)
        if column = column_for_attribute(attr)
          if column.number? && (changes_from_nil_to_empty_string?(column, old, value) ||
                                changes_from_zero_to_string?(old, value))
            value = nil
          else
            value = column.type_cast(value)
          end
        end

        old != value
      end
Register or log in to add new notes.