Home › Forums › CRM › How to reassing contacts to anonther user using a command in DB? › Reply To: How to reassing contacts to anonther user using a command in DB?
September 25, 2017 at 10:04 am
#9822
Shawon Chowdhury
Moderator
You can run an update query to assign one contact owner to all these contacts.
Here is the query snipset:
update
wp_erp_peoplemeta
set meta_value = 1 where meta_key = ‘contact_owner’
Note: meta_value=1 (user id of whom you want to make a contact owner).
Thanks 🙂