wp_crmlytics_email_tracking

Static

Stores crmlytics email tracking data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDYES
campaign_idBIGINT(20) UNSIGNEDNO
contact_idBIGINT(20) UNSIGNEDNO
email_toVARCHAR(255)NO
subjectVARCHAR(255)YES
sent_atDATETIMEYES
clicked_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_crmlytics_email_tracking ( id BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, campaign_id BIGINT(20) UNSIGNED NOT NULL, contact_id BIGINT(20) UNSIGNED NOT NULL, email_to VARCHAR(255) NOT NULL, subject VARCHAR(255), sent_at DATETIME, clicked_at DATETIME, INDEX idx_campaign_id (campaign_id), INDEX idx_contact_id (contact_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_email_tracking`;

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

Other tables from CRMlytics – WooCommerce CRM & Customer Analytics