wp_bearmor_file_changes

Static

Stores bearmor file changes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
file_pathVARCHAR(500)NO
old_checksumVARCHAR(64)YES
new_checksumVARCHAR(64)YES
detected_atDATETIMENO
action_takenENUM('none', 'locked', 'quarantined', 'marked_safe')YES
action_byBIGINT UNSIGNEDYES

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