aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb
blob: dc7079dda2d8cc217a8a03139191389539ad2988 (plain) (tree)
1
2
3
4
5
6
7

                             



                           
                                             







                        
# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class BitVarying < OID::Bit # :nodoc:
          def type
            :bit_varying
          end
        end
      end
    end
  end
end