wp_izcrmef_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| flow_id | bigint(20) | YES |
| job_id | bigint(20) | YES |
| api_type | varchar(255) | YES |
| response_type | varchar(50) | YES |
| response_obj | LONGTEXT | YES |
| created_at | DATETIME | NO |
| name | varchar(255) | YES |
| triggered_entity | varchar(50) | NO |
| triggered_entity_id | varchar(100) | YES |
| status | tinyint(1) | YES |
| 1 | enabled | YES |
| 2 | trashed | YES |
| user_ip | int(11) unsigned | YES |
| created_at | datetime | YES |
| updated_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_izcrmef_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `flow_id` bigint(20) DEFAULT NULL, `job_id` bigint(20) DEFAULT NULL, `api_type` varchar(255) DEFAULT NULL, `response_type` varchar(50) DEFAULT NULL, `response_obj` LONGTEXT DEFAULT NULL, `created_at` DATETIME NOT NULL, PRIMARY KEY (`id`), KEY `flow_id` (`flow_id`) ) $collate;", "CREATE TABLE IF NOT EXISTS `wp_izcrmef_flow` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `triggered_entity` varchar(50) NOT NULL, `triggered_entity_id` varchar(100) DEFAULT NULL, /* form_id = 0 means all/app */ `flow_details` longtext DEFAULT NULL, `status` tinyint(1) DEFAULT 1,/* 0 disabled, 1 enabled, 2 trashed */ `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` int(11) unsigned DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) $collate;" ]; include_once ABSPATH . 'wp-admin/includes/upgrade.php'; foreach ($table_schema as $table) { dbDelta($table);Safe to delete?
If you have uninstalled Integrations of Zoho CRM with Elementor form, 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_izcrmef_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Integrations of Zoho CRM with Elementor form