wp_cffu_tracked_file_uploads

Static

Stores cffu tracked file uploads data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
session_idchar(32)NO
file_pathvarchar(255)NO

CREATE TABLE Statement

CREATE TABLE wp_cffu_tracked_file_uploads ( id bigint(20) NOT NULL AUTO_INCREMENT, session_id char(32) NOT NULL, file_path varchar(255) NOT NULL, PRIMARY KEY (id) ) {$wpdb->get_charset_collate()}" );

Safe to delete?

If you have uninstalled Checkout Fields and File Upload for 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_cffu_tracked_file_uploads`;

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