wp_burst_searches
StaticStores burst searches data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int | NO |
| search | varchar(191) | NO |
CREATE TABLE Statement
CREATE TABLE wp_burst_searches ( `ID` int NOT NULL AUTO_INCREMENT, `search` varchar(191) NOT NULL, PRIMARY KEY (ID), UNIQUE KEY search_unique (search) ) $charset_collate;"; dbDelta( $sql );
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_searches`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative)