wp_bearmor_firewall_blocks

Static

Stores bearmor firewall blocks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
ip_addressVARCHAR(45)NO
request_uriTEXTNO
request_methodVARCHAR(10)YES
user_agentTEXTYES
rule_matchedVARCHAR(255)YES
blocked_atDATETIMENO

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