Du måste använda jsonb_set()
funktion, här är ett exempel :
Item.where(id: items).
update_all(
"properties = jsonb_set(properties, '{price}', to_json(#{unique_price}::int)::jsonb)"
)
Detta skulle bevara alla värden och endast uppdatera en nyckel.
Läs dokumentationen