# frozen_string_literal: true module ActiveRecord module ConnectionAdapters module CipherStashPG module OID # :nodoc: class Oid < Type::UnsignedInteger # :nodoc: def type :oid end end end end end end