wp_b2s_ai_template
StaticStores b2s ai template data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| blog_user_id | int(11) | NO |
| network_id | int(11) | NO |
| type_id | tinyint(4) | NO |
| payload | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_b2s_ai_template` ( `id` int(11) NOT NULL AUTO_INCREMENT, `blog_user_id` int(11) NOT NULL, `network_id` int(11) NOT NULL, `type_id` tinyint(4) NOT NULL, `payload` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), INDEX `blog_user_id` (`blog_user_id`), INDEX `network_id` (`network_id`), INDEX `type_id` (`type_id`) ) DEFAULT CHARSET
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_ai_template`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Blog2Social: Social Media Auto Post & Scheduler