aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/helpers/mutable.rb
blob: dc37f4a885d4677ca675218af286d54de5dca1ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module ActiveRecord
  module Type
    module Helpers
      module Mutable # :nodoc:
        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)
          raw_old_value != type_cast_for_database(new_value)
        end
      end
    end
  end
end