Sha256: 3e728a0da69cabbc1aff0530f86cc2cec700a65b1e52b002acc7178ed00642bc
Contents?: true
Size: 432 Bytes
Versions: 44
Compression:
Stored size: 432 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module ConnectionAdapters module SQLServer module Type class Binary < ActiveRecord::Type::Binary def type :binary_basic end def sqlserver_type "binary".yield_self do |type| type += "(#{limit})" if limit type end end end end end end end
Version data entries
44 entries across 44 versions & 1 rubygems