aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/unsigned_integer.rb
blob: 535369e630795d8e33c2d15098b7d00e30c8c221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module ActiveRecord
  module Type
    class UnsignedInteger < ActiveModel::Type::Integer # :nodoc:
      private
        def max_value
          super * 2
        end

        def min_value
          0
        end
    end
  end
end