wp_crmlytics_contact_timeline
StaticStores crmlytics contact timeline data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | YES |
| contact_id | BIGINT(20) UNSIGNED | NO |
| event_type | VARCHAR(50) | NO |
| event_title | VARCHAR(255) | YES |
| event_data | JSON | YES |
| event_description | TEXT | YES |
| created_by | BIGINT(20) UNSIGNED | YES |
| event_date | DATETIME | NO |
| created_at | DATETIME | YES |
| updated_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_crmlytics_contact_timeline ( id BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, contact_id BIGINT(20) UNSIGNED NOT NULL, event_type VARCHAR(50) NOT NULL, event_title VARCHAR(255) DEFAULT '', event_data JSON, event_description TEXT, created_by BIGINT(20) UNSIGNED DEFAULT 0, event_date DATETIME NOT NULL, created_at DATETIME, updated_at DATETIME, INDEX idx_contact_id (contact_id), INDEX idx_event_type (event_type), INDEX idx_event_date (event_date), INDEX idx_contact_event_date (contact_id, event_date), INDEX idx_contact_type_date (contact_id, event_type, event_date), INDEX idx_created_by (created_by) ) $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_timeline`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CRMlytics – WooCommerce CRM & Customer Analytics