Sha256: 5b7a4083dc14e2b00b3881f62d09fd938c8bb01c87a773ae485d385a750a5ae5
Contents?: true
Size: 741 Bytes
Versions: 15
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true # 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
15 entries across 15 versions & 1 rubygems