wp_kb_tags

Static

Stores kb tags data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑id_ktagsint(3)NO
id_kbucketvarchar(100)YES
id_tagint(3)YES
statusenum( '0','1' )YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_kb_tags ( id_ktags int(3) NOT NULL AUTO_INCREMENT, id_kbucket varchar(100) DEFAULT NULL, id_tag int(3) DEFAULT NULL, status enum( '0','1' ) DEFAULT '1', PRIMARY KEY (id_ktags), UNIQUE KEY id_kbucket_id_tag_index (id_kbucket,id_tag) ) 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_tags`;

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

Other tables from KBucket: Your Curated Content in WordPress