wp_bearmor_quarantine

Static

Stores bearmor quarantine data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
file_pathVARCHAR(500)NO
quarantined_pathVARCHAR(500)NO
reasonVARCHAR(255)YES
quarantined_atDATETIMENO
quarantined_byBIGINT UNSIGNEDYES
restored_atDATETIMEYES
restored_byBIGINT UNSIGNEDYES
statusENUM('quarantined', 'restored', 'deleted')YES

CREATE TABLE Statement

CREATE TABLE wp_bearmor_quarantine ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, file_path VARCHAR(500) NOT NULL, quarantined_path VARCHAR(500) NOT NULL, reason VARCHAR(255), quarantined_at DATETIME NOT NULL, quarantined_by BIGINT UNSIGNED, restored_at DATETIME, restored_by BIGINT UNSIGNED, status ENUM('quarantined', 'restored', 'deleted') DEFAULT 'quarantined', KEY status (status), KEY quarantined_at (quarantined_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_quarantine`;

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

Other tables from Bearmor Security