wp_burst_report_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑IDbigint unsignedNO
report_idbigint unsignedNO
queue_idvarchar(32)NO
batch_idint unsignedYES
statusvarchar(32)NO
messagetextYES
timeint unsignedNO
datevarchar(10)NO

CREATE TABLE Statement

CREATE TABLE wp_burst_report_logs ( ID bigint unsigned NOT NULL AUTO_INCREMENT, report_id bigint unsigned NOT NULL, queue_id varchar(32) NOT NULL, batch_id int unsigned DEFAULT NULL, status varchar(32) NOT NULL, message text DEFAULT NULL, time int unsigned NOT NULL, date varchar(10) NOT NULL, PRIMARY KEY (ID) ) {$charset};"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled Burst Statistics – Privacy-Friendly WordPress Analytics (Google Analytics Alternative), 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_burst_report_logs`;

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

Other tables from Burst Statistics – Privacy-Friendly WordPress Analytics (Google Analytics Alternative)