wp_wpbdp_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)YES
object_idbigint(20)YES
rel_object_idbigint(20)YES
object_typevarchar(20)YES
created_atdatetimeNO
log_typevarchar(255)YES
actorvarchar(255)YES
messagetextYES
datalongblobYES

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