wp_kb_category

Static

Stores kb category data created by this plugin.

Column Definitions

ColumnTypeNullable
id_catvarchar(100)NO
namevarchar(50)YES
alias_namevarchar(255)YES
descriptiontextYES
imagetextYES
parent_catvarchar(100)YES
levelbigint(3)YES
add_datedateYES
statusenum( '0','1' )YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_kb_category ( id_cat varchar(100) NOT NULL, name varchar(50) DEFAULT NULL, alias_name varchar(255) DEFAULT NULL, description text, image text, parent_cat varchar(100) DEFAULT '0', level bigint(3) DEFAULT NULL, add_date date DEFAULT NULL, keywords varchar(255) DEFAULT NULL, status enum( '0','1' ) DEFAULT '1', PRIMARY KEY (id_cat), UNIQUE KEY id_cat (id_cat,name,parent_cat) ) 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_category`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from KBucket: Your Curated Content in WordPress