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

Public Class Methods

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

Public Instance Methods

type() click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 12
def type
  :binary
end