wp_wpbdp_form_fields

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)YES
labelvarchar(255)NO
descriptionvarchar(255)YES
field_typevarchar(100)NO
associationvarchar(100)NO
validatorstextYES
weightint(5)NO
display_flagstextYES
field_datablobYES
shortnamevarchar(255)NO
tagvarchar(255)NO

CREATE TABLE Statement

CREATE TABLE wp_wpbdp_form_fields ( id bigint(20) PRIMARY KEY AUTO_INCREMENT, label varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, description varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL, field_type varchar(100) NOT NULL, association varchar(100) NOT NULL, validators text CHARACTER SET utf8 COLLATE utf8_general_ci NULL, weight int(5) NOT NULL DEFAULT 0, display_flags text CHARACTER SET utf8 COLLATE utf8_general_ci NULL, field_data blob NULL, shortname varchar(255) NOT NULL DEFAULT '', tag varchar(255) NOT NULL DEFAULT '', KEY field_type (field_type) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Business Directory Plugin – Easy Listing Directories for WordPress, 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_wpbdp_form_fields`;

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

Other tables from Business Directory Plugin – Easy Listing Directories for WordPress