Sha256: 473e84be45c52b3e042368c82d87acc2ff744137c3fe631ac1cc99e004f76d99
Contents?: true
Size: 264 Bytes
Versions: 51
Compression:
Stored size: 264 Bytes
Contents
# 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
Version data entries
51 entries across 51 versions & 7 rubygems