wp_fb_files
StaticStores fb files data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑file_id | INT | NO |
| entry_id | INT | YES |
| file_caption | LONGTEXT | YES |
| file_name | VARCHAR | YES |
| file_mime | VARCHAR | YES |
| file_size | INT | YES |
| file_data | LONGBLOB | YES |
| file_thumb | LONGBLOB | YES |
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