wp_bdrc_cleanup_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
trigger_typevarchar(30)NO
revisionsint(11)NO
auto_draftsint(11)NO
space_freedbigint(20)NO
duration_msint(11)NO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_bdrc_cleanup_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, trigger_type varchar(30) NOT NULL DEFAULT 'manual', revisions int(11) NOT NULL DEFAULT 0, auto_drafts int(11) NOT NULL DEFAULT 0, space_freed bigint(20) NOT NULL DEFAULT 0, duration_ms int(11) NOT NULL DEFAULT 0, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY created_at (created_at), KEY trigger_type (trigger_type) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled Biddut Revision Cleaner, 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_bdrc_cleanup_logs`;

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