Hi, we have more than 2000 contacts in DB, and the user that was associated with the contacts is deleted. Currently we see NULL value. Is there any way to work on DB to reassign all these contacts to another user, or delete them all, and we will run the import again?
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 🙂
Author
Posts
Viewing 1 reply thread
The forum ‘CRM’ is closed to new topics and replies.