wp_crmlytics_contact_tags

Static

Stores crmlytics contact tags data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idSMALLINT(5) UNSIGNEDYES
tag_nameVARCHAR(100)NO
tag_slugVARCHAR(100)NO
tag_colorVARCHAR(7)YES
tag_descriptionTEXTYES
auto_applyTINYINT(1)YES
prune_non_matchingTINYINT(1)YES
rulesJSONYES
customer_countINT(10) UNSIGNEDYES
created_atDATETIMEYES

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