wp_kb_page_settings
StaticStores kb page settings data created by this plugin.
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_kb_page_settings ( // id_page int(3) NOT NULL AUTO_INCREMENT, // api_key varchar(255) DEFAULT NULL, // api_trial varchar(2) DEFAULT NULL, // kb_share_popap text NOT NULL, // api_user_id varchar(255) DEFAULT NULL, // sort_by varchar(10) DEFAULT NULL, // sort_order varchar(10) DEFAULT NULL, // no_listing_perpage int(4) DEFAULT NULL, // main_no_tags int(4) DEFAULT NULL, // author_no_tags int(4) DEFAULT NULL, // related_no_tags int(4) DEFAULT NULL, // main_tag_color1 varchar(10) DEFAULT NULL, // main_tag_color2 varchar(10) DEFAULT NULL, // author_tag_color1 varchar(10) DEFAULT NULL, // author_tag_color2 varchar(10) DEFAULT NULL, // related_tag_color1 varchar(10) DEFAULT NULL, // related_tag_color2 varchar(10) DEFAULT NULL, // author_tag_display enum( '0','1' ) DEFAULT '1', // header_color varchar(10) DEFAULT NULL, // author_color varchar(10) DEFAULT NULL, // content_color varchar(10) DEFAULT NULL, // tag_color varchar(10) DEFAULT NULL, // status enum( '0','1' ) DEFAULT '1', // page_title varchar(50) DEFAULT NULL, // site_search int(1) DEFAULT NULL, // m1 int(4) DEFAULT NULL, // m2 int(4) DEFAULT NULL, // m3 int(4) DEFAULT NULL, // m4 int(4) DEFAULT NULL, // a1 int(4) DEFAULT NULL, // a2 int(4) DEFAULT NULL, // a3 int(4) DEFAULT NULL, // a4 int(4) DEFAULT NULL, // r1 int(4) DEFAULT NULL, // r2 int(4) DEFAULT NULL, // r3 int(4) DEFAULT NULL, // r4 int(4) DEFAULT NULL, // bitly_username varchar(255) NOT NULL, // bitly_key varchar(255) NOT NULL, // vc enum( '0','1' ) DEFAULT '0', // PRIMARY KEY (id_page) // ) 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_page_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from KBucket: Your Curated Content in WordPress