wp_bwf_actions
StaticStores bwf actions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| c_date | datetime | NO |
| e_time | int(12) | NO |
| hook | varchar(255) | NO |
| args | longtext | YES |
| status | int(1) | NO |
| recurring_interval | int(10) | NO |
| group_slug | varchar(255) | NO |
| claim_id | bigint(20) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE `wp_bwf_actions` ( id bigint(20) unsigned NOT NULL auto_increment, c_date datetime NOT NULL default '0000-00-00 00:00:00', e_time int(12) NOT NULL default 0, hook varchar(255) not null, args longtext null, status int(1) not null default 0 COMMENT '0 - Pending | 1 - Running', recurring_interval int(10) not null default 0, group_slug varchar(255) not null default 'woofunnels', claim_id bigint(20) unsigned NOT NULL default 0, PRIMARY KEY (id), KEY id (id), KEY e_time (e_time), KEY hook (hook(191)), KEY status (status), KEY group_slug (group_slug(191)), KEY claim_id (claim_id) ) $collate;"; } public static function create_bwf_action_claim() { 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_actions`;
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