wp_crmlytics_custom_fields
StaticStores crmlytics custom fields data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | YES |
| field_name | VARCHAR(255) | NO |
| field_label | VARCHAR(255) | NO |
| field_type | ENUM('text','textarea','number','yes_no','phone','url','date') | YES |
| field_options | JSON | YES |
| is_required | TINYINT(1) | YES |
| sort_order | INT(10) | YES |
| is_active | TINYINT(1) | YES |
| created_at | DATETIME | YES |
| updated_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_crmlytics_custom_fields ( id BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, field_name VARCHAR(255) NOT NULL, field_label VARCHAR(255) NOT NULL, field_type ENUM('text','textarea','number','yes_no','phone','url','date') DEFAULT 'text', field_options JSON, is_required TINYINT(1) DEFAULT 0, sort_order INT(10) DEFAULT 0, is_active TINYINT(1) DEFAULT 1, created_at DATETIME, updated_at DATETIME, UNIQUE KEY field_name (field_name) ) $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_fields`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CRMlytics – WooCommerce CRM & Customer Analytics