wp_crmlytics_contact_tag_mapping

Static

Stores crmlytics contact tag mapping data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDYES
contact_idBIGINT(20) UNSIGNEDNO
tag_idSMALLINT(5) UNSIGNEDNO
sourceENUM('manual','auto')YES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_crmlytics_contact_tag_mapping ( id BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, contact_id BIGINT(20) UNSIGNED NOT NULL, tag_id SMALLINT(5) UNSIGNED NOT NULL, source ENUM('manual','auto') DEFAULT 'manual', created_at DATETIME, UNIQUE KEY contact_tag (contact_id, tag_id), INDEX idx_contact_id (contact_id), INDEX idx_tag_id (tag_id) ) $charset_collate;"; dbDelta($sql);

Safe to delete?

If you have uninstalled CRMlytics – WooCommerce CRM & Customer Analytics, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_crmlytics_contact_tag_mapping`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from CRMlytics – WooCommerce CRM & Customer Analytics