wp_aryo_activity_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑histid | int(11) | NO |
| user_caps | varchar(70) | NO |
| action | varchar(255) | NO |
| object_type | varchar(255) | NO |
| object_subtype | varchar(255) | NO |
| object_name | varchar(255) | NO |
| object_id | int(11) | NO |
| user_id | int(11) | NO |
| hist_ip | varchar(55) | NO |
| hist_time | int(11) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_aryo_activity_log` ( `histid` 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', `hist_ip` varchar(55) NOT NULL DEFAULT '127.0.0.1', `hist_time` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`histid`), KEY `user_caps` (`user_caps`), KEY `action` (`action`), KEY `object_type` (`object_type`), KEY `object_subtype` (`object_subtype`), KEY `object_name` (`object_name`), KEY `user_id` (`user_id`), KEY `hist_ip` (`hist_ip`), KEY `hist_time` (`hist_time`) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Activity Log – Monitor & Record User Changes, 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_aryo_activity_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.