aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb
blob: 564e82a4ac9e21de7127f93065efe72227fc81e9 (plain) (tree)
1
2
3
4
5
6
7
8
9



                           
                                                        

                           
                                         
                        
                          
             




           
module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class SpecializedString < Type::String # :nodoc:
          attr_reader :type

          def initialize(type, **options)
            @type = type
            super(options)
          end
        end
      end
    end
  end
end