wp_bearmor_malware_detections
StaticStores bearmor malware detections data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| file_path | VARCHAR(500) | NO |
| pattern_id | VARCHAR(100) | NO |
| pattern_name | VARCHAR(255) | NO |
| severity | ENUM('critical', 'high', 'medium', 'low') | NO |
| category | VARCHAR(100) | NO |
| description | TEXT | YES |
| line_number | INT UNSIGNED | NO |
| code_snippet | TEXT | YES |
| matched_text | TEXT | YES |
| detected_at | DATETIME | NO |
| status | ENUM('pending', 'whitelisted', 'quarantined', 'false_positive') | YES |
| action_by | BIGINT UNSIGNED | YES |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_malware_detections ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, file_path VARCHAR(500) NOT NULL, pattern_id VARCHAR(100) NOT NULL, pattern_name VARCHAR(255) NOT NULL, severity ENUM('critical', 'high', 'medium', 'low') NOT NULL, category VARCHAR(100) NOT NULL, description TEXT, line_number INT UNSIGNED NOT NULL, code_snippet TEXT, matched_text TEXT, detected_at DATETIME NOT NULL, status ENUM('pending', 'whitelisted', 'quarantined', 'false_positive') DEFAULT 'pending', action_by BIGINT UNSIGNED, KEY file_path (file_path), KEY severity (severity), KEY status (status), KEY detected_at (detected_at) ) $charset_collate;"; dbDelta( $sql );Safe to delete?
If you have uninstalled Bearmor Security, 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_bearmor_malware_detections`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security