wp_bbpress_follow

Static

Stores bbpress follow data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) UNSIGNEDNO
user_idbigint(20) UNSIGNEDNO
follower_idbigint(20) UNSIGNEDNO
start_followDATETIMENO

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.