wp_b2s_user

Static

Stores b2s user data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
tokenvarchar(255)NO
blog_user_idint(11)NO
featureTINYINT(2)NO
state_urlTINYINT(2)NO
register_dateDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_b2s_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token` varchar(255) NOT NULL, `blog_user_id` int(11) NOT NULL, `feature` TINYINT(2) NOT NULL, `state_url` TINYINT(2) NOT NULL, `register_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), INDEX `blog_user_id` (`blog_user_id`), INDEX `token` (`token`), INDEX `feature` (`feature`) ) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci AUTO_INCREMENT=1;"; //No User input in statement // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared $wpdb->query($sqlCreateUser);

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`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Blog2Social: Social Media Auto Post & Scheduler