module ActiveRecord module ConnectionAdapters module PostgreSQL module OID # :nodoc: class SpecializedString < Type::String attr_reader :type def initialize(type) @type = type end def text? false end end end end end end