wp_bearmor_activity_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| user_id | BIGINT UNSIGNED | NO |
| username | VARCHAR(60) | NO |
| action | VARCHAR(50) | NO |
| object_type | VARCHAR(50) | YES |
| object_name | VARCHAR(255) | YES |
| ip_address | VARCHAR(45) | YES |
| user_agent | TEXT | YES |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_activity_log ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, username VARCHAR(60) NOT NULL, action VARCHAR(50) NOT NULL, object_type VARCHAR(50), object_name VARCHAR(255), ip_address VARCHAR(45), user_agent TEXT, created_at DATETIME NOT NULL, INDEX idx_user_id (user_id), INDEX idx_action (action), INDEX idx_created_at (created_at) ) $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_activity_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security