wp_actlogpro_activity_log_pro_all_logs

Static

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

CREATE TABLE Statement

CREATE TABLE `wp_actlogpro_activity_log_pro_all_logs` (\n  `id` bigint NOT NULL AUTO_INCREMENT,\n  `user_id` bigint NOT NULL,\n  `user_role` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `user_display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `ip_address` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `event_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `object_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `object_id` bigint NOT NULL,\n  `object_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `action` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `description` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `created_at` datetime NOT NULL,\n  `metadata` longtext COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Activity Log Pro – User Activity Log, Audit Log & Security Monitor, 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_actlogpro_activity_log_pro_all_logs`;

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