wp_kb_files
StaticStores kb files data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id_file | int(9) | NO |
| name | varchar(100) | YES |
| comment | text | YES |
| encoding | text | NO |
| publisher | varchar(255) | YES |
| author | varchar(50) | YES |
| file_added | varchar(100) | YES |
| file_path | varchar(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