wp_bearmor_login_attempts

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
ip_addressVARCHAR(45)NO
usernameVARCHAR(60)YES
successTINYINT(1)YES
attempted_atDATETIMENO
user_agentTEXTYES
country_codeVARCHAR(2)YES

CREATE TABLE Statement

CREATE TABLE wp_bearmor_login_attempts ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, ip_address VARCHAR(45) NOT NULL, username VARCHAR(60), success TINYINT(1) DEFAULT 0, attempted_at DATETIME NOT NULL, user_agent TEXT, country_code VARCHAR(2), KEY ip_address (ip_address), KEY attempted_at (attempted_at), KEY success (success) ) $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_login_attempts`;

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

Other tables from Bearmor Security