wp_wpbdp_form_fields
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | YES |
| label | varchar(255) | NO |
| description | varchar(255) | YES |
| field_type | varchar(100) | NO |
| association | varchar(100) | NO |
| validators | text | YES |
| weight | int(5) | NO |
| display_flags | text | YES |
| field_data | blob | YES |
| shortname | varchar(255) | NO |
| tag | varchar(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