wp_cb_leads

Static

Stores cb leads data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(20)NO
lead_idvarchar(50)NO
wp_user_idint(20)YES
lead_first_namevarchar(50)YES
lead_last_namevarchar(50)YES
lead_emailvarchar(50)YES
lead_phonevarchar(20)YES
sourcevarchar(20)NO
cart_urlvarchar(100)NO
cart_contentlongtextYES
cart_totalfloat(20)YES
createddatetimeYES
last_updateddatetimeYES
total_visitsint(20)YES
last_visiteddatetimeYES
statusENUMNO
converted_timedatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_cb_leads ( `id` int(20) NOT NULL AUTO_INCREMENT, `lead_id` varchar(50) NOT NULL, `wp_user_id` int(20) DEFAULT NULL, `lead_first_name` varchar(50) DEFAULT NULL, `lead_last_name` varchar(50) DEFAULT NULL, `lead_email` varchar(50) DEFAULT NULL, `lead_phone` varchar(20) DEFAULT NULL, `source` varchar(20) NOT NULL, `cart_url` varchar(100) NOT NULL, `cart_content` longtext DEFAULT NULL, `cart_total` float(20) DEFAULT 0, `created` datetime DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `total_visits` int(20) DEFAULT 0, `last_visited` datetime DEFAULT NULL, `status` ENUM ('new', 'in-progress', 'all-notifications-sent', 'converted') NOT NULL DEFAULT 'new', `converted_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) {$wpdb->get_charset_collate()}" );

Safe to delete?

If you have uninstalled Cart Bounce – Cart Recovery for WooCommerce, Gravity Forms, WPForms, EDD, PMPro and more, 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_cb_leads`;

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

Other tables from Cart Bounce – Cart Recovery for WooCommerce, Gravity Forms, WPForms, EDD, PMPro and more