aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/integer.rb
blob: 08477d13035705f82da8fb3f2e207807b09374c7 (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 Integer < Value # :nodoc:
      include Numeric

      def type
        :integer
      end

      alias type_cast_for_database type_cast

      private

      def cast_value(value)
        case value
        when true then 1
        when false then 0
        else value.to_i rescue nil
        end
      end
    end
  end
end