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