wp_fb_images

Static

Stores fb images data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑image_idINTNO
entry_idINTYES
image_captionLONGTEXTYES
image_nameVARCHARYES
image_mimeVARCHARYES
image_sizeINTYES
image_dataLONGBLOBYES
image_thumbLONGBLOBYES

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