aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/json.rb
blob: bb0f8487fa2aa03c903d3d2b16d6e770febd201c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Json < Type::Json # :nodoc:
        end
      end
    end
  end
end