wp_bpm_pages
StaticStores bpm pages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) unsigned | NO |
| page_id | BIGINT(20) | NO |
| created_by | BIGINT(20) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_bpm_pages` ( `id` INT(11) unsigned NOT NULL AUTO_INCREMENT , `page_id` BIGINT(20) NOT NULL , `created_by` BIGINT(20) NOT NULL , `created_at` DATETIME NOT NULL , PRIMARY KEY (`id`) ) $charset_collate"; if( ! function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $schema );Safe to delete?
If you have uninstalled Bulk Page Maker Light, 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_bpm_pages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.