aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
blob: e0216f108916cbe8e21df541faf22b5b0d6751e6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                             



                           
                                          


                  




           
# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Jsonb < Type::Json # :nodoc:
          def type
            :jsonb
          end
        end
      end
    end
  end
end