wp_bearmor_blocked_ips

Static

Stores bearmor blocked ips data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
ip_addressVARCHAR(45)NO
blocked_atDATETIMENO
expires_atDATETIMEYES
reasonVARCHAR(255)YES
permanentTINYINT(1)YES
blocked_byBIGINT UNSIGNEDYES
statusVARCHAR(20)YES

CREATE TABLE Statement

CREATE TABLE wp_bearmor_blocked_ips ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, ip_address VARCHAR(45) NOT NULL, blocked_at DATETIME NOT NULL, expires_at DATETIME, reason VARCHAR(255), permanent TINYINT(1) DEFAULT 0, blocked_by BIGINT UNSIGNED, status VARCHAR(20) DEFAULT 'active', KEY expires_at (expires_at), KEY permanent (permanent), KEY status (status), KEY ip_status (ip_address, status) ) $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_blocked_ips`;

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

Other tables from Bearmor Security