wp_bearmor_blocked_ips
StaticStores bearmor blocked ips data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| ip_address | VARCHAR(45) | NO |
| blocked_at | DATETIME | NO |
| expires_at | DATETIME | YES |
| reason | VARCHAR(255) | YES |
| permanent | TINYINT(1) | YES |
| blocked_by | BIGINT UNSIGNED | YES |
| status | VARCHAR(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