wp_bulk_edit
StaticStores bulk edit data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | INT(32) UNSIGNED | NO |
| meta_key | VARCHAR(255) | NO |
| meta_label | VARCHAR(255) | NO |
| post_types | VARCHAR(255) | NO |
| field_type | VARCHAR(50) | NO |
| field_values | TEXT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_bulk_edit` ( `ID` INT(32) UNSIGNED NOT NULL AUTO_INCREMENT, `meta_key` VARCHAR(255) NOT NULL COLLATE 'utf8_general_ci', `meta_label` VARCHAR(255) NOT NULL COLLATE 'utf8_general_ci', `post_types` VARCHAR(255) NOT NULL COLLATE 'utf8_general_ci', `field_type` VARCHAR(50) NOT NULL COLLATE 'utf8_general_ci', `field_values` TEXT NULL COLLATE 'utf8_general_ci', PRIMARY KEY (`ID`), UNIQUE INDEX `meta_key` (`meta_key`) ) ENGINE
Safe to delete?
If you have uninstalled Bulk Postmeta Editor, 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_bulk_edit`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.