wp_crmlytics_contact_timeline

Static

Stores crmlytics contact timeline data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDYES
contact_idBIGINT(20) UNSIGNEDNO
event_typeVARCHAR(50)NO
event_titleVARCHAR(255)YES
event_dataJSONYES
event_descriptionTEXTYES
created_byBIGINT(20) UNSIGNEDYES
event_dateDATETIMENO
created_atDATETIMEYES
updated_atDATETIMEYES

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