wp_bearmor_user_profiles
StaticStores bearmor user profiles data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| user_id | BIGINT UNSIGNED | NO |
| known_ips | TEXT | YES |
| known_countries | TEXT | YES |
| known_user_agents | TEXT | YES |
| typical_login_hours | VARCHAR(255) | YES |
| last_login_at | DATETIME | YES |
| last_login_ip | VARCHAR(45) | YES |
| last_login_country | VARCHAR(2) | YES |
| profile_created | DATETIME | NO |
| profile_updated | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_user_profiles ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, known_ips TEXT, known_countries TEXT, known_user_agents TEXT, typical_login_hours VARCHAR(255), last_login_at DATETIME, last_login_ip VARCHAR(45), last_login_country VARCHAR(2), profile_created DATETIME NOT NULL, profile_updated DATETIME NOT NULL, UNIQUE KEY user_id (user_id), KEY user_id_index (user_id) ) $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_user_profiles`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security