wp_fb_images
StaticStores fb images data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑image_id | INT | NO |
| entry_id | INT | YES |
| image_caption | LONGTEXT | YES |
| image_name | VARCHAR | YES |
| image_mime | VARCHAR | YES |
| image_size | INT | YES |
| image_data | LONGBLOB | YES |
| image_thumb | LONGBLOB | YES |
CREATE TABLE Statement
CREATE TABLE fb_images( image_id INT (11) NOT NULL AUTO_INCREMENT, entry_id INT (11) DEFAULT NULL, image_caption LONGTEXT DEFAULT NULL, image_name VARCHAR (100) DEFAULT NULL, image_mime VARCHAR (40) DEFAULT NULL, image_size INT (11) DEFAULT NULL, image_data LONGBLOB DEFAULT NULL, image_thumb LONGBLOB DEFAULT NULL, PRIMARY KEY (image_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_images`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from RackForms Express Web Form Builder