Attempts to save!
the record and clears changed attributes if successful.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 32
def save!(*) #:nodoc:
super.tap do
@previously_changed = changes
@changed_attributes.clear
end
rescue
IdentityMap.remove(self) if IdentityMap.enabled?
raise
end