wp_bearmor_login_attempts
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| ip_address | VARCHAR(45) | NO |
| username | VARCHAR(60) | YES |
| success | TINYINT(1) | YES |
| attempted_at | DATETIME | NO |
| user_agent | TEXT | YES |
| country_code | VARCHAR(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