wp_bitcf7zc_zoho_crm_log_details

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
form_idbigint(20)NO
integration_idbigint(20)YES
api_typevarchar(255)YES
response_typevarchar(50)YES
response_objLONGTEXTYES
created_atDATETIMENO
categoryvarchar(50)NO
integration_namevarchar(255)YES
integration_typevarchar(50)NO
integration_detailslongtextYES
form_idbigint(20) unsignedYES
user_ipint(11) unsignedYES
statustinyint(1)YES
1publishedYES
2trashedYES
updated_atdatetimeYES
form_idbigint(20) unsignedYES
user_ipint(11) unsignedYES
statustinyint(1)YES
1publishedYES
2trashedYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_bitcf7zc_zoho_crm_log_details` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `form_id` bigint(20) NOT NULL, `integration_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 `integration_id` (`integration_id`) ) $collate;", "CREATE TABLE IF NOT EXISTS `wp_bitcf7zc_integration` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category` varchar(50) NOT NULL, `integration_name` varchar(255) DEFAULT NULL, `integration_type` varchar(50) NOT NULL, `integration_details` longtext DEFAULT NULL, `form_id` bigint(20) unsigned DEFAULT NULL, /* form_id = 0 means all/app */ `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` int(11) unsigned DEFAULT NULL, `status` tinyint(1) DEFAULT 1,/* 0 disabled, 1 published, 2 trashed */ `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) $collate;", "CREATE TABLE IF NOT EXISTS `wp_bitcf7zc_gclid` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `form_id` bigint(20) unsigned DEFAULT NULL, /* form_id = 0 means all/app */ `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` int(11) unsigned DEFAULT NULL, `status` tinyint(1) DEFAULT 1,/* 0 disabled, 1 published, 2 trashed */ `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) $collate;" );

Safe to delete?

If you have uninstalled Integration of Zoho CRM and Contact Form 7, 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_bitcf7zc_zoho_crm_log_details`;

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

Other tables from Integration of Zoho CRM and Contact Form 7