1-- Set an new value to the password of an user 2update public.user_account 3set 4 password_hash = $2, 5 updated_at = current_timestamp 6where id = $1;