wp_fb_files

Static

Stores fb files data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑file_idINTNO
entry_idINTYES
file_captionLONGTEXTYES
file_nameVARCHARYES
file_mimeVARCHARYES
file_sizeINTYES
file_dataLONGBLOBYES
file_thumbLONGBLOBYES

CREATE TABLE Statement

CREATE TABLE fb_files( file_id INT (11) NOT NULL AUTO_INCREMENT, entry_id INT (11) DEFAULT NULL, file_caption LONGTEXT DEFAULT NULL, file_name VARCHAR (100) DEFAULT NULL, file_mime VARCHAR (40) DEFAULT NULL, file_size INT (11) DEFAULT NULL, file_data LONGBLOB DEFAULT NULL, file_thumb LONGBLOB DEFAULT NULL, PRIMARY KEY (file_id) ) ENGINE

Safe to delete?

If you have uninstalled RackForms Express Web Form Builder, 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_fb_files`;

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

Other tables from RackForms Express Web Form Builder