wp_bearmor_deep_scan_results

Static

Stores bearmor deep scan results data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
scan_typeENUM('database', 'uploads')NO
item_typeVARCHAR(50)NO
item_idVARCHAR(255)NO
locationTEXTNO
patternVARCHAR(255)YES
matched_codeTEXTYES
severityENUM('low', 'medium', 'high', 'critical')NO
statusENUM('pending', 'safe', 'removed')YES
detected_atDATETIMENO

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