class ActiveRecord::ConnectionAdapters::SQLServer::Type::VarbinaryMax

Public Class Methods

new(**args) click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 8
def initialize(**args)
  super
  @limit = 2_147_483_647
end

Public Instance Methods

sqlserver_type() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 17
def sqlserver_type
  "varbinary(max)"
end
type() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 13
def type
  :binary
end