wp_adminify_activity_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑log_idint(11)NO
user_capsvarchar(70)NO
actionvarchar(255)NO
object_typevarchar(255)NO
object_subtypevarchar(255)NO
object_namevarchar(255)NO
object_idint(11)NO
user_idint(11)NO
log_ipvarchar(55)NO
log_timeint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_adminify_activity_logs` ( `log_id` int(11) NOT NULL AUTO_INCREMENT, `user_caps` varchar(70) NOT NULL DEFAULT 'guest', `action` varchar(255) NOT NULL, `object_type` varchar(255) NOT NULL, `object_subtype` varchar(255) NOT NULL DEFAULT '', `object_name` varchar(255) NOT NULL, `object_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `log_ip` varchar(55) NOT NULL DEFAULT '127.0.0.1', `log_time` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`log_id`) ) ENGINE

Safe to delete?

If you have uninstalled Adminify Activity Logs, 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_adminify_activity_logs`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Adminify Activity Logs