In the document there is an example as follow: ``` .onConflict('name').doUpdate('age') ``` but actually it should be: ``` .onConflict('name').doUpdate(['age']) ``` do I miss a thing?