wp_kb_suggest

Static

Stores kb suggest data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑id_sugint(2)NO
id_catvarchar(100)YES
tittlevarchar(50)YES
descriptiontextNO
tagsvarchar(200)NO
add_datedateYES
authorvarchar(50)YES
linktextYES
twittertextYES
facebooktextYES
statusenum( '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