wp_bwf_contact_meta

Static

Stores additional metadata (key-value pairs) for bwf contact records.

Column Definitions

ColumnTypeNullable
🔑meta_idbigint(20) unsignedNO
contact_idbigint(20) unsignedNO
meta_keyvarchar(50)YES
meta_valuelongtextYES

CREATE TABLE Statement

CREATE TABLE `wp_bwf_contact_meta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `contact_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(50) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`) ) $collate;"; } public static function create_bwf_actions() { 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_meta`;

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