aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/big_integer.rb
blob: 0c72d8914f393dc8c6e794f6ae2780702f620529 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'active_record/type/integer'

module ActiveRecord
  module Type
    class BigInteger < Integer # :nodoc:
      private

      def max_value
        ::Float::INFINITY
      end
    end
  end
end