wp_b2s_user_tool
StaticStores b2s user tool data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| create_date | DATETIME | NO |
| blog_user_id | int(11) | NO |
| tool_id | TINYINT | NO |
| access_token | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_b2s_user_tool` ( `id` int(11) NOT NULL AUTO_INCREMENT, `create_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `blog_user_id` int(11) NOT NULL, `tool_id` TINYINT NOT NULL DEFAULT '1', `access_token` varchar(255) NOT NULL, PRIMARY KEY (`id`), INDEX `access_token` (`access_token`), INDEX `blog_user_id` (`blog_user_id`), INDEX `tool_id` (`tool_id`) ) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci AUTO_INCREMENT=1;"; //No User input in statement // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared $wpdb->query($sqlCreateUserTool);
Safe to delete?
If you have uninstalled Blog2Social: Social Media Auto Post & Scheduler, 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_b2s_user_tool`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Blog2Social: Social Media Auto Post & Scheduler