wp_burst_gsc_diagnostic_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint unsigned | NO |
| time | int unsigned | NO |
| event | varchar(64) | NO |
| status | varchar(24) | NO |
| message | varchar(191) | NO |
| context | longtext | NO |
CREATE TABLE Statement
CREATE TABLE wp_burst_gsc_diagnostic_logs ( `ID` bigint unsigned NOT NULL AUTO_INCREMENT, `time` int unsigned NOT NULL, `event` varchar(64) NOT NULL, `status` varchar(24) NOT NULL, `message` varchar(191) NOT NULL, `context` longtext NOT NULL, PRIMARY KEY (ID), KEY `time` (`time`) ) $charset_collate;" );
Safe to delete?
If you have uninstalled Burst Statistics – Simple 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_gsc_diagnostic_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative)