wp_bot_traffic_log
VerifiedA logging table that records activity, events, or audit history.
CREATE TABLE Statement
CREATE TABLE `wp_bot_traffic_log` (\n `id` mediumint NOT NULL AUTO_INCREMENT,\n `time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `bot_id` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `bot_name` varchar(120) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `hostname` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `request_uri` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `http_status` int NOT NULL,\n PRIMARY KEY (`id`),\n KEY `bot_id` (`bot_id`),\n KEY `time` (`time`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Track-A-Bot, 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_bot_traffic_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.