aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/decimal.rb
blob: ba5d24472961a2240ccc82b1141f5c54a5dd73a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module ActiveRecord
  module Type
    class Decimal < Value # :nodoc:
      include Numeric

      def type
        :decimal
      end

      def type_cast_for_schema(value)
        value.to_s
      end

      private

      def cast_value(value)
        if value.is_a?(::Numeric) || value.is_a?(::String)
          BigDecimal(value, precision.to_i)
        elsif value.respond_to?(:to_d)
          value.to_d
        else
          cast_value(value.to_s)
        end
      end
    end
  end
end