wp_kbucket

Static

Stores kbucket data created by this plugin.

Column Definitions

ColumnTypeNullable
id_kbucketvarchar(100)NO
id_catvarchar(100)YES
titletextYES
descriptiontextNO
linktextYES
authorvarchar(50)YES
publishervarchar(255)YES
author_aliasvarchar(255)YES
publisher_aliasvarchar(255)YES
facebookvarchar(200)NO
twittervarchar(200)NO
pub_datevarchar(100)YES
add_datedateYES
statusenum( '0','1' )YES
image_urlvarchar(255)YES
short_urlvarchar(255)YES
post_idint(11)YES
url_kbucketvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_kbucket ( id_kbucket varchar(100) NOT NULL, id_cat varchar(100) DEFAULT NULL, title text, description text NOT NULL, link text, author varchar(50) DEFAULT NULL, publisher varchar(255) DEFAULT NULL, author_alias varchar(255) DEFAULT NULL, publisher_alias varchar(255) DEFAULT NULL, facebook varchar(200) NOT NULL, twitter varchar(200) NOT NULL, pub_date varchar(100) DEFAULT NULL, add_date date DEFAULT NULL, status enum( '0','1' ) DEFAULT '1', image_url varchar(255) DEFAULT '', short_url varchar(255) DEFAULT '', post_id int(11) DEFAULT NULL, url_kbucket varchar(255), PRIMARY KEY (id_kbucket), UNIQUE KEY id_kbucket_id_cat_index (id_kbucket,id_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_kbucket`;

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

Other tables from KBucket: Your Curated Content in WordPress