wp_hubapp_ai_agents

Verified

Stores hubapp ai agents data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_hubapp_ai_agents` (\n  `id` bigint NOT NULL AUTO_INCREMENT,\n  `post_id` bigint NOT NULL,\n  `visit_date` datetime DEFAULT CURRENT_TIMESTAMP,\n  `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `agent_name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `page_url` text COLLATE utf8mb4_unicode_520_ci,\n  `user_ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `referer` text COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`),\n  KEY `post_id` (`post_id`),\n  KEY `visit_date` (`visit_date`),\n  KEY `agent_name` (`agent_name`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled HubApp (AI Hub) – Platform for AI Agents, 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_hubapp_ai_agents`;

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

Other tables from HubApp (AI Hub) – Platform for AI Agents