wp_bearmor_activity_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
user_idBIGINT UNSIGNEDNO
usernameVARCHAR(60)NO
actionVARCHAR(50)NO
object_typeVARCHAR(50)YES
object_nameVARCHAR(255)YES
ip_addressVARCHAR(45)YES
user_agentTEXTYES
created_atDATETIMENO

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