wp_wpbdp_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | YES |
| object_id | bigint(20) | YES |
| rel_object_id | bigint(20) | YES |
| object_type | varchar(20) | YES |
| created_at | datetime | NO |
| log_type | varchar(255) | YES |
| actor | varchar(255) | YES |
| message | text | YES |
| data | longblob | YES |
CREATE TABLE Statement
CREATE TABLE wp_wpbdp_logs ( id bigint(20) PRIMARY KEY AUTO_INCREMENT, object_id bigint(20) NULL DEFAULT 0, rel_object_id bigint(20) NULL DEFAULT 0, object_type varchar(20) NULL DEFAULT '', created_at datetime NOT NULL, log_type varchar(255) NULL DEFAULT '', actor varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '', message text CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '', data longblob NULL ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled Business Directory Plugin – Easy Listing Directories for WordPress, 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_wpbdp_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Business Directory Plugin – Easy Listing Directories for WordPress