wp_deepmacl_scans

Static

Stores deepmacl scans data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
scan_idVARCHAR(36)NO
statusVARCHAR(20)NO
total_filesINT(11)NO
threatsINT(11)NO
started_atDATETIMENO
finished_atDATETIMEYES
scan_idVARCHAR(36)NO
file_pathTEXTNO
threat_typeVARCHAR(100)NO
severityVARCHAR(20)NO
statusVARCHAR(20)NO
quarantine_pathTEXTYES
found_atDATETIMENO
actioned_atDATETIMEYES

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