wp_bulk_edit

Static

Stores bulk edit data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDINT(32) UNSIGNEDNO
meta_keyVARCHAR(255)NO
meta_labelVARCHAR(255)NO
post_typesVARCHAR(255)NO
field_typeVARCHAR(50)NO
field_valuesTEXTYES

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.