|
|
|
|
|
by rafaelgoncalves
163 days ago
|
|
on postgres I can update a field easily and atomically with transactions (or there is something I don't know about?), like (postgresql 14)[0]: UPDATE users SET profile = profile || '{"lastname":"Washington"}' WHERE profile->>'name' = 'George Washington';
[0] https://stackoverflow.com/a/38045827 |
|