wp_burst_report_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint unsigned | NO |
| report_id | bigint unsigned | NO |
| queue_id | varchar(32) | NO |
| batch_id | int unsigned | YES |
| status | varchar(32) | NO |
| message | text | YES |
| time | int unsigned | NO |
| date | varchar(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)