wp_b2s_posts_network_details
StaticStores b2s posts network details data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| owner_blog_user_id | int(11) | NO |
| network_id | TINYINT | NO |
| network_type | TINYINT | NO |
| network_auth_id | int(11) | NO |
| network_display_name | varchar(100) | NO |
| data | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_b2s_posts_network_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `owner_blog_user_id` int(11) NOT NULL, `network_id` TINYINT NOT NULL, `network_type` TINYINT NOT NULL, `network_auth_id` int(11) NOT NULL, `network_display_name` varchar(100) NOT NULL, `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`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($sqlCreateUserNetworkDetails);
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_posts_network_details`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Blog2Social: Social Media Auto Post & Scheduler