wp_fileentries
StaticStores fileentries data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INTEGER | YES |
| parent_id | INTEGER | YES |
| name | TEXT | NO |
| type | TEXT | NO |
| size | INTEGER | YES |
| dir_size | INTEGER | YES |
| dir_recursive_size | INTEGER | YES |
| dir_count | INTEGER | YES |
| dir_recursive_count | INTEGER | YES |
| last_modified_date | INTEGER | YES |
| is_wp_core_file | INTEGER | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS fileentries ( id INTEGER PRIMARY KEY AUTOINCREMENT, parent_id INTEGER, name TEXT NOT NULL, type TEXT NOT NULL, size INTEGER, dir_size INTEGER, dir_recursive_size INTEGER, dir_count INTEGER, dir_recursive_count INTEGER, last_modified_date INTEGER, is_wp_core_file INTEGER ) ");
Safe to delete?
If you have uninstalled Disk Usage Insights, 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_fileentries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.