wp_cb_leads
StaticStores cb leads data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(20) | NO |
| lead_id | varchar(50) | NO |
| wp_user_id | int(20) | YES |
| lead_first_name | varchar(50) | YES |
| lead_last_name | varchar(50) | YES |
| lead_email | varchar(50) | YES |
| lead_phone | varchar(20) | YES |
| source | varchar(20) | NO |
| cart_url | varchar(100) | NO |
| cart_content | longtext | YES |
| cart_total | float(20) | YES |
| created | datetime | YES |
| last_updated | datetime | YES |
| total_visits | int(20) | YES |
| last_visited | datetime | YES |
| status | ENUM | NO |
| converted_time | datetime | YES |
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