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

Version Path
activerecord-jdbc-alt-adapter-52.6.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.7.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.7.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.5.1-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.6.1-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.6.1-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.4.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.5.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.5.0-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.3.4-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.3.4-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.2.3-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.2.2-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.3.3-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.3.3-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-50.3.2-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.3.2-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.2.1-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-51.3.1-java lib/arjdbc/mssql/types/deprecated_types.rb
activerecord-jdbc-alt-adapter-52.2.0-java lib/arjdbc/mssql/types/deprecated_types.rb