wp_burst_reports

Static

Stores burst reports data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint unsignedNO
namevarchar(255)NO
date_rangevarchar(255)NO
formatvarchar(32)NO
frequencyvarchar(16)NO
fixed_end_datevarchar(16)NO
day_of_weekvarchar(16)YES
week_of_monthintYES
send_timevarchar(16)NO
last_editint unsignedNO
enabledtinyint(1)NO
scheduledtinyint(1)NO
contentlongtextNO
recipientslongtextNO

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)