aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/oid.rb
blob: 9c2ac08b303bfed0b9c3d77922a41608cb4bf362 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Oid < Type::Integer # :nodoc:
          def type
            :oid
          end
        end
      end
    end
  end
end