aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/float.rb
blob: dc50dae32822c268f80064ba2f5f8bbc34f466de (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
module ActiveRecord
  module Type
    class Float < Value # :nodoc:
      include Numeric

      def type
        :float
      end

      def klass
        ::Float
      end

      alias type_cast_for_database type_cast

      private

      def cast_value(value)
        value.to_f
      end
    end
  end
end