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