wp_kb_files

Static

Stores kb files data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑id_fileint(9)NO
namevarchar(100)YES
commenttextYES
encodingtextNO
publishervarchar(255)YES
authorvarchar(50)YES
file_addedvarchar(100)YES
file_pathvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_kb_files ( id_file int(9) NOT NULL AUTO_INCREMENT, name varchar(100) DEFAULT NULL, comment text DEFAULT NULL, encoding text NOT NULL, publisher varchar(255) DEFAULT NULL, author varchar(50) DEFAULT NULL, keywords text DEFAULT NULL, file_added varchar(100) DEFAULT NULL, file_path varchar(255) DEFAULT NULL, PRIMARY KEY (id_file) ) 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_files`;

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

Other tables from KBucket: Your Curated Content in WordPress