wp_kb_suggest
StaticStores kb suggest data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id_sug | int(2) | NO |
| id_cat | varchar(100) | YES |
| tittle | varchar(50) | YES |
| description | text | NO |
| tags | varchar(200) | NO |
| add_date | date | YES |
| author | varchar(50) | YES |
| link | text | YES |
| text | YES | |
| text | YES | |
| status | enum( '0','1' ) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_kb_suggest ( id_sug int(2) NOT NULL AUTO_INCREMENT, id_cat varchar(100) DEFAULT NULL, tittle varchar(50) DEFAULT NULL, description text NOT NULL, tags varchar(200) NOT NULL, add_date date DEFAULT NULL, author varchar(50) DEFAULT NULL, link text, twitter text, facebook text, status enum( '0','1' ) DEFAULT '1', PRIMARY KEY (id_sug) ) 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_suggest`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from KBucket: Your Curated Content in WordPress