PostgreSQL Update JSON Campo Chave Valor
UPDATE table_name SET attrs = jsonb_set(cast(attrs as jsonb), '{key}', '"new_value"', true) WHERE id = 'some_id';
Envious Earthworm