wp_burst_reports
StaticStores burst reports data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int unsigned | NO |
| name | varchar(255) | NO |
| date_range | varchar(255) | NO |
| format | varchar(32) | NO |
| frequency | varchar(16) | NO |
| fixed_end_date | varchar(16) | NO |
| day_of_week | varchar(16) | YES |
| week_of_month | int | YES |
| send_time | varchar(16) | NO |
| last_edit | int unsigned | NO |
| enabled | tinyint(1) | NO |
| scheduled | tinyint(1) | NO |
| content | longtext | NO |
| recipients | longtext | NO |
CREATE TABLE Statement
CREATE TABLE wp_burst_reports ( `ID` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `date_range` varchar(255) NOT NULL, `format` varchar(32) NOT NULL, `frequency` varchar(16) NOT NULL, `fixed_end_date` varchar(16) NOT NULL, `day_of_week` varchar(16) DEFAULT NULL, `week_of_month` int DEFAULT NULL, `send_time` varchar(16) NOT NULL, `last_edit` int unsigned NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT 1, `scheduled` tinyint(1) NOT NULL DEFAULT 0, `content` longtext NOT NULL, `recipients` longtext NOT NULL, PRIMARY KEY (`ID`) ) {$charset_collate};"; 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_reports`;
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)