wp_bearmor_file_checksums

Static

Stores bearmor file checksums data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
file_pathVARCHAR(500)NO
file_sizeBIGINT UNSIGNEDYES
last_checkedDATETIMENO
statusENUM('baseline', 'changed', 'new', 'deleted', 'safe')YES

CREATE TABLE Statement

CREATE TABLE wp_bearmor_file_checksums ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, file_path VARCHAR(500) NOT NULL, checksum VARCHAR(64) NOT NULL, file_size BIGINT UNSIGNED, last_checked DATETIME NOT NULL, status ENUM('baseline', 'changed', 'new', 'deleted', 'safe') DEFAULT 'baseline', UNIQUE KEY file_path (file_path), KEY status (status), KEY last_checked (last_checked) ) $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_checksums`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Bearmor Security