wp_bwf_contact
StaticStores bwf contact data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(12) unsigned | NO |
| wpid | int(12) | NO |
| uid | varchar(35) | NO |
| varchar(100) | NO | |
| f_name | varchar(100) | YES |
| l_name | varchar(100) | YES |
| contact_no | varchar(20) | YES |
| country | char(2) | YES |
| state | varchar(100) | YES |
| timezone | varchar(50) | YES |
| type | varchar(20) | YES |
| source | varchar(100) | YES |
| points | bigint(20) unsigned | NO |
| tags | longtext | YES |
| lists | longtext | YES |
| last_modified | DateTime | NO |
| creation_date | DateTime | NO |
| status | int(2) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_bwf_contact` ( `id` int(12) unsigned NOT NULL AUTO_INCREMENT, `wpid` int(12) NOT NULL, `uid` varchar(35) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL, `f_name` varchar(100), `l_name` varchar(100), `contact_no` varchar(20), `country` char(2), `state` varchar(100), `timezone` varchar(50) DEFAULT '', `type` varchar(20) DEFAULT 'lead', `source` varchar(100) DEFAULT '', `points` bigint(20) unsigned NOT NULL DEFAULT '0', `tags` longtext, `lists` longtext, `last_modified` DateTime NOT NULL, `creation_date` DateTime NOT NULL, `status` int(2) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `id` (`id`), KEY `wpid` (`wpid`), KEY `uid` (`uid`), UNIQUE KEY (`email`) )$collate;"; } public static function create_bwf_contact_meta() { global $wpdb; $collate = self::get_collation();Safe to delete?
If you have uninstalled FunnelKit Automations – Email Marketing Automation and CRM for WordPress & WooCommerce, 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_bwf_contact`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FunnelKit Automations – Email Marketing Automation and CRM for WordPress & WooCommerce