class ActiveRecord::ConnectionAdapters::SQLServer::Type::Binary
Public Instance Methods
sqlserver_type()
click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/binary.rb, line 12 def sqlserver_type "binary".yield_self do |type| type += "(#{limit})" if limit type end end
type()
click to toggle source
# File lib/active_record/connection_adapters/sqlserver/type/binary.rb, line 8 def type :binary_basic end