wp_bbpress_follow
StaticStores bbpress follow data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) UNSIGNED | NO |
| user_id | bigint(20) UNSIGNED | NO |
| follower_id | bigint(20) UNSIGNED | NO |
| start_follow | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `bbpress_follow` ( `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` bigint(20) UNSIGNED NOT NULL, `follower_id` bigint(20) UNSIGNED NOT NULL, `start_follow` DATETIME NOT NULL, PRIMARY KEY (`ID`) )");
Safe to delete?
If you have uninstalled Follow for bbPress, 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_bbpress_follow`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.