Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / services / api / config / initializers / custom_types.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 # JSONB backed Hash & Array types that default to their empty versions when
6 # reading NULL from the database, or get nil passed by parameter.
7 ActiveRecord::Type.register(:jsonbHash, JsonbType::Hash)
8 ActiveRecord::Type.register(:jsonbArray, JsonbType::Array)