wp_bearmor_deep_scan_results
StaticStores bearmor deep scan results data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| scan_type | ENUM('database', 'uploads') | NO |
| item_type | VARCHAR(50) | NO |
| item_id | VARCHAR(255) | NO |
| location | TEXT | NO |
| pattern | VARCHAR(255) | YES |
| matched_code | TEXT | YES |
| severity | ENUM('low', 'medium', 'high', 'critical') | NO |
| status | ENUM('pending', 'safe', 'removed') | YES |
| detected_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_deep_scan_results ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, scan_type ENUM('database', 'uploads') NOT NULL, item_type VARCHAR(50) NOT NULL, item_id VARCHAR(255) NOT NULL, location TEXT NOT NULL, pattern VARCHAR(255), matched_code TEXT, severity ENUM('low', 'medium', 'high', 'critical') NOT NULL, status ENUM('pending', 'safe', 'removed') DEFAULT 'pending', detected_at DATETIME NOT NULL, KEY scan_type (scan_type), 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_deep_scan_results`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security