Flowdock
method

calculate_changes_from_defaults

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods::Dirty
calculate_changes_from_defaults() 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 84
      def calculate_changes_from_defaults
        @changed_attributes = nil
        self.class.column_defaults.each do |attr, orig_value|
          set_attribute_was(attr, orig_value) if _field_changed?(attr, orig_value)
        end
      end
Register or log in to add new notes.