wp_bpm_profile

Static

Stores bpm profile data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
wp_levelvarchar(255)YES
wp_groupvarchar(255)YES
m_hiddenvarchar(255)YES
p_hiddenvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE bpm_profile ( id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, wp_level varchar(255), wp_group varchar(255), m_hidden varchar(255), p_hidden varchar(255));

Safe to delete?

If you have uninstalled Profiles Manager, 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_profile`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Profiles Manager