wp_bwf_contact

Static

Stores bwf contact data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(12) unsignedNO
wpidint(12)NO
uidvarchar(35)NO
emailvarchar(100)NO
f_namevarchar(100)YES
l_namevarchar(100)YES
contact_novarchar(20)YES
countrychar(2)YES
statevarchar(100)YES
timezonevarchar(50)YES
typevarchar(20)YES
sourcevarchar(100)YES
pointsbigint(20) unsignedNO
tagslongtextYES
listslongtextYES
last_modifiedDateTimeNO
creation_dateDateTimeNO
statusint(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