wp_bearmor_user_profiles

Static

Stores bearmor user profiles data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
user_idBIGINT UNSIGNEDNO
known_ipsTEXTYES
known_countriesTEXTYES
known_user_agentsTEXTYES
typical_login_hoursVARCHAR(255)YES
last_login_atDATETIMEYES
last_login_ipVARCHAR(45)YES
last_login_countryVARCHAR(2)YES
profile_createdDATETIMENO
profile_updatedDATETIMENO

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