wp_bearmor_quarantine
StaticStores bearmor quarantine data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| file_path | VARCHAR(500) | NO |
| quarantined_path | VARCHAR(500) | NO |
| reason | VARCHAR(255) | YES |
| quarantined_at | DATETIME | NO |
| quarantined_by | BIGINT UNSIGNED | YES |
| restored_at | DATETIME | YES |
| restored_by | BIGINT UNSIGNED | YES |
| status | ENUM('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