method
save_changed_attribute
v4.1.8 -
Show latest stable
- Class:
ActiveRecord::Enum
save_changed_attribute(attr_name, value)private
No documentation available.
# File activerecord/lib/active_record/enum.rb, line 141
def save_changed_attribute(attr_name, value)
if (mapping = self.class.defined_enums[attr_name.to_s])
if attribute_changed?(attr_name)
old = changed_attributes[attr_name]
if mapping[old] == value
changed_attributes.delete(attr_name)
end
else
old = clone_attribute_value(:read_attribute, attr_name)
if old != value
changed_attributes[attr_name] = mapping.key old
end
end
else
super
end
end