wp_crmlytics_custom_fields

Static

Stores crmlytics custom fields data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDYES
field_nameVARCHAR(255)NO
field_labelVARCHAR(255)NO
field_typeENUM('text','textarea','number','yes_no','phone','url','date')YES
field_optionsJSONYES
is_requiredTINYINT(1)YES
sort_orderINT(10)YES
is_activeTINYINT(1)YES
created_atDATETIMEYES
updated_atDATETIMEYES

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