wp_crmlytics_email_tracking
StaticStores crmlytics email tracking data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | YES |
| campaign_id | BIGINT(20) UNSIGNED | NO |
| contact_id | BIGINT(20) UNSIGNED | NO |
| email_to | VARCHAR(255) | NO |
| subject | VARCHAR(255) | YES |
| sent_at | DATETIME | YES |
| clicked_at | DATETIME | YES |
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