wp_crmlytics_contact_tags
StaticStores crmlytics contact tags data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | SMALLINT(5) UNSIGNED | YES |
| tag_name | VARCHAR(100) | NO |
| tag_slug | VARCHAR(100) | NO |
| tag_color | VARCHAR(7) | YES |
| tag_description | TEXT | YES |
| auto_apply | TINYINT(1) | YES |
| prune_non_matching | TINYINT(1) | YES |
| rules | JSON | YES |
| customer_count | INT(10) UNSIGNED | YES |
| created_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_crmlytics_contact_tags ( id SMALLINT(5) UNSIGNED AUTO_INCREMENT PRIMARY KEY, tag_name VARCHAR(100) NOT NULL, tag_slug VARCHAR(100) NOT NULL, tag_color VARCHAR(7) DEFAULT '#0073aa', tag_description TEXT, auto_apply TINYINT(1) DEFAULT 0, prune_non_matching TINYINT(1) DEFAULT 0, rules JSON, customer_count INT(10) UNSIGNED DEFAULT 0, created_at DATETIME, UNIQUE KEY tag_slug (tag_slug) ) $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_tags`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CRMlytics – WooCommerce CRM & Customer Analytics