wp_bearmor_firewall_whitelist
StaticStores bearmor firewall whitelist data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| whitelist_type | ENUM('ip', 'uri') | NO |
| value | VARCHAR(500) | NO |
| added_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_firewall_whitelist ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, whitelist_type ENUM('ip', 'uri') NOT NULL, value VARCHAR(500) NOT NULL, added_at DATETIME NOT NULL, KEY idx_type (whitelist_type) ) $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_firewall_whitelist`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security