aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb
blob: 054af285bb1f29488879ed7e3861e3b18f54c666 (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 BitVarying < OID::Bit
          def type
            :bit_varying
          end
        end
      end
    end
  end
end