module ActiveRecord module Type module Mutable def type_cast_from_user(value) type_cast_from_database(type_cast_for_database(value)) end # +raw_old_value+ will be the `_before_type_cast` version of the # value (likely a string). +new_value+ will be the current, type # cast value. def changed_in_place?(raw_old_value, new_value) # :nodoc: raw_old_value != type_cast_for_database(new_value) end end end end