module ActiveRecord::AttributeMethods::Dirty

def reload(*)

reload the record and clears changed attributes.
def reload(*)
  super.tap do
    @mutations_before_last_save = nil
    @mutations_from_database = nil
  end
end