wp_brosh_acc
StaticStores brosh acc data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| wpi | varchar(45) | NO |
CREATE TABLE Statement
CREATE TABLE brosh_acc ( `id` int NOT NULL AUTO_INCREMENT, `wpi` varchar(45) NOT NULL, PRIMARY KEY (`id`) ) $charsetCollate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled BROSH CRM, 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_brosh_acc`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.