wp_kb_tag_details
StaticStores kb tag details data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id_tag | int(3) | NO |
| name | varchar(50) | YES |
| status | enum( '0','1' ) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_kb_tag_details ( id_tag int(3) NOT NULL AUTO_INCREMENT, name varchar(50) DEFAULT NULL, status enum( '0','1' ) DEFAULT '1', PRIMARY KEY (id_tag), UNIQUE KEY name_index (name) ) ENGINE
Safe to delete?
If you have uninstalled KBucket: Your Curated Content in WordPress, 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_kb_tag_details`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from KBucket: Your Curated Content in WordPress