Reset signatures with help of SQL query?

fredrikse

Active member
Hi,

I would like to reset the signature field in xenForo after migration from vB is completed. What would the SQL query for that be?
 
Hi,

I would like to reset the signature field in xenForo after migration from vB is completed. What would the SQL query for that be?

By resetting you mean to truncate/delete all signatures for everyone? If so run this query at the SQL box in phpmyadmin

Code:
UPDATE xf_user_profile
SET signature = '';

If you are using another prefix for your tables, replace xf_ with your custom prefix at the queries above. Hope it helps.
 
Top Bottom