wp_bearmor_firewall_blocks
StaticStores bearmor firewall blocks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| ip_address | VARCHAR(45) | NO |
| request_uri | TEXT | NO |
| request_method | VARCHAR(10) | YES |
| user_agent | TEXT | YES |
| rule_matched | VARCHAR(255) | YES |
| blocked_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_firewall_blocks ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, ip_address VARCHAR(45) NOT NULL, request_uri TEXT NOT NULL, request_method VARCHAR(10), user_agent TEXT, rule_matched VARCHAR(255), blocked_at DATETIME NOT NULL, KEY idx_ip_address (ip_address), KEY idx_blocked_at (blocked_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_firewall_blocks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security