wp_bpm_pages

Static

Stores bpm pages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) unsignedNO
page_idBIGINT(20)NO
created_byBIGINT(20)NO
created_atDATETIMENO

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.