Du skal bruge jsonb_set()
funktion, her er et eksempel :
Item.where(id: items).
update_all(
"properties = jsonb_set(properties, '{price}', to_json(#{unique_price}::int)::jsonb)"
)
Dette ville bevare alle værdier og kun opdatere én nøgle.
Læs dokumentation