wp_coxwall_file_hashes

Static

Stores coxwall file hashes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
file_pathVARCHAR(255)NO
file_hashVARCHAR(64)NO
statusVARCHAR(20)NO
scanned_atDATETIMENO

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