Sha256: bb970e4a1c1d196382485682b894fa9302aa7101d71c9c03a8127dd20a30785e
Contents?: true
Size: 710 Bytes
Versions: 23
Compression:
Stored size: 710 Bytes
Contents
# MSSQL deprecated type definitions module ActiveRecord module ConnectionAdapters module MSSQL module Type class Text < ActiveRecord::Type::String def type :text_basic end def limit @limit ||= 2_147_483_647 end end class Ntext < ActiveRecord::Type::String def type :ntext end def limit @limit ||= 2_147_483_647 end end class Image < ActiveRecord::Type::Binary def type :image end def limit @limit ||= 2_147_483_647 end end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems