wp_crmlytics_custom_field_values

Static

Stores crmlytics custom field values data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDYES
contact_idBIGINT(20) UNSIGNEDNO
field_idBIGINT(20) UNSIGNEDNO
field_valueTEXTYES
created_atDATETIMEYES
updated_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_crmlytics_custom_field_values ( id BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, contact_id BIGINT(20) UNSIGNED NOT NULL, field_id BIGINT(20) UNSIGNED NOT NULL, field_value TEXT, created_at DATETIME, updated_at DATETIME, INDEX idx_contact_id (contact_id), INDEX idx_field_id (field_id), UNIQUE KEY contact_field (contact_id, field_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_custom_field_values`;

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

Other tables from CRMlytics – WooCommerce CRM & Customer Analytics