wp_crmlytics_contact_tag_mapping
StaticStores crmlytics contact tag mapping data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | YES |
| contact_id | BIGINT(20) UNSIGNED | NO |
| tag_id | SMALLINT(5) UNSIGNED | NO |
| source | ENUM('manual','auto') | YES |
| created_at | DATETIME | YES |
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