wp_burst_goal_statistics
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int | NO |
| statistic_id | int | NO |
| goal_id | int | NO |
CREATE TABLE Statement
CREATE TABLE wp_burst_goal_statistics ( `ID` int NOT NULL AUTO_INCREMENT, `statistic_id` int NOT NULL, `goal_id` int NOT NULL, PRIMARY KEY (ID), UNIQUE KEY goal_statistic_unique (goal_id, statistic_id) ) $charset_collate;"; 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_goal_statistics`;
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)