wp_deepmacl_scans
StaticStores deepmacl scans data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| scan_id | VARCHAR(36) | NO |
| status | VARCHAR(20) | NO |
| total_files | INT(11) | NO |
| threats | INT(11) | NO |
| started_at | DATETIME | NO |
| finished_at | DATETIME | YES |
| scan_id | VARCHAR(36) | NO |
| file_path | TEXT | NO |
| threat_type | VARCHAR(100) | NO |
| severity | VARCHAR(20) | NO |
| status | VARCHAR(20) | NO |
| quarantine_path | TEXT | YES |
| found_at | DATETIME | NO |
| actioned_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_deepmacl_scans ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, scan_id VARCHAR(36) NOT NULL, status VARCHAR(20) NOT NULL DEFAULT 'running', total_files INT(11) NOT NULL DEFAULT 0, threats INT(11) NOT NULL DEFAULT 0, started_at DATETIME NOT NULL, finished_at DATETIME DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY scan_id (scan_id) ) $charset;"; $sql_results = "CREATE TABLE wp_deepmacl_results ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, scan_id VARCHAR(36) NOT NULL, file_path TEXT NOT NULL, threat_type VARCHAR(100) NOT NULL, severity VARCHAR(20) NOT NULL DEFAULT 'medium', status VARCHAR(20) NOT NULL DEFAULT 'new', quarantine_path TEXT DEFAULT NULL, found_at DATETIME NOT NULL, actioned_at DATETIME DEFAULT NULL, PRIMARY KEY (id), KEY scan_id (scan_id) ) $charset;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql_scans );
Safe to delete?
If you have uninstalled Deep Malware Cleaner, 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_deepmacl_scans`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Deep Malware Cleaner