method

attributes_changed_in_place

attributes_changed_in_place()
private

No documentation available.

# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 146
      def attributes_changed_in_place
        changed_in_place.each_with_object({}) do |attr_name, h|
          orig = @attributes[attr_name].original_value
          h[attr_name] = orig
        end
      end