We have a table in the XenForo database. You can see it here: [link]. I want to change the "email_confirm" values in this section to "valid." Is the following MySQL query correct for this task? I am hesitant to delete and reload the backup because the user is an Admin. Here is the query: UPDATE xf_user SET user_state = REPLACE ( user_state, 'email_confirm', 'valid' ). Is this query correct?