class ActiveRecord::ConnectionAdapters::SQLServer::Type::TinyInteger

Public Instance Methods

sqlserver_type() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/tiny_integer.rb, line 7
def sqlserver_type
  'tinyint'.freeze
end

Private Instance Methods

max_value() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/tiny_integer.rb, line 13
def max_value
  256
end
min_value() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/tiny_integer.rb, line 17
def min_value
  0
end