wp_wfacp_stats

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
order_idbigint(20) unsignedNO
wfacp_idbigint(20) unsignedNO
total_revenuevarchar(255)NO
cidbigint(20) unsignedNO
fidbigint(20) unsignedNO
datedatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_wfacp_stats ( ID bigint(20) unsigned NOT NULL auto_increment, order_id bigint(20) unsigned NOT NULL, wfacp_id bigint(20) unsigned NOT NULL, total_revenue varchar(255) not null default 0, cid bigint(20) unsigned NOT NULL DEFAULT 0, fid bigint(20) unsigned NOT NULL DEFAULT 0, date datetime NOT NULL, PRIMARY KEY (ID), KEY ID (ID), KEY oid (order_id), KEY bid (wfacp_id), KEY date (date) ) $collate;"; dbDelta( $creationSQL );

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_wfacp_stats`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from FunnelKit – Funnel Builder for WooCommerce Checkout