wp_coxwall_file_hashes
StaticStores coxwall file hashes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| file_path | VARCHAR(255) | NO |
| file_hash | VARCHAR(64) | NO |
| status | VARCHAR(20) | NO |
| scanned_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_coxwall_file_hashes ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, file_path VARCHAR(255) NOT NULL, file_hash VARCHAR(64) NOT NULL, status VARCHAR(20) NOT NULL DEFAULT 'ok', scanned_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY file_path (file_path(191)) ) $charset;" );
Safe to delete?
If you have uninstalled CoxWall, 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_coxwall_file_hashes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CoxWall