aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/integer.rb
blob: 3a216c6dd6661b7658f7c8fe142348d5c23c1919 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Integer < Value # :nodoc:
        def type
          :integer
        end

        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
end