wp_bwf_funnelmeta
StaticStores bwf funnelmeta data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑meta_id | bigint(20) unsigned | NO |
| bwf_funnel_id | bigint(20) unsigned | NO |
| meta_key | varchar(255) | YES |
| meta_value | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_bwf_funnelmeta ( meta_id bigint(20) unsigned NOT NULL auto_increment, bwf_funnel_id bigint(20) unsigned NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY bwf_funnel_id (bwf_funnel_id), KEY meta_key (meta_key($max_index_length)) ) $collate;"; dbDelta( $_meta_table );
Safe to delete?
If you have uninstalled FunnelKit – Funnel Builder for WooCommerce Checkout, 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_funnelmeta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FunnelKit – Funnel Builder for WooCommerce Checkout