wp_crmlytics_custom_field_values
StaticStores crmlytics custom field values data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | YES |
| contact_id | BIGINT(20) UNSIGNED | NO |
| field_id | BIGINT(20) UNSIGNED | NO |
| field_value | TEXT | YES |
| created_at | DATETIME | YES |
| updated_at | DATETIME | YES |
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