wp_bearmor_file_changes
StaticStores bearmor file changes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| file_path | VARCHAR(500) | NO |
| old_checksum | VARCHAR(64) | YES |
| new_checksum | VARCHAR(64) | YES |
| detected_at | DATETIME | NO |
| action_taken | ENUM('none', 'locked', 'quarantined', 'marked_safe') | YES |
| action_by | BIGINT UNSIGNED | YES |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_file_changes ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, file_path VARCHAR(500) NOT NULL, old_checksum VARCHAR(64), new_checksum VARCHAR(64), detected_at DATETIME NOT NULL, action_taken ENUM('none', 'locked', 'quarantined', 'marked_safe') DEFAULT 'none', action_by BIGINT UNSIGNED, KEY detected_at (detected_at), KEY file_path (file_path) ) $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_file_changes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security