wp_hubapp_analytics
VerifiedStores analytics or statistics data.
CREATE TABLE Statement
CREATE TABLE `wp_hubapp_analytics` (\n `id` bigint NOT NULL AUTO_INCREMENT,\n `post_id` bigint NOT NULL,\n `visit_date` datetime DEFAULT CURRENT_TIMESTAMP,\n `user_ip` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `user_agent` text COLLATE utf8mb4_unicode_520_ci,\n `referer` text COLLATE utf8mb4_unicode_520_ci,\n `is_logged_in` tinyint(1) DEFAULT '0',\n `user_id` bigint DEFAULT NULL,\n `country` varchar(2) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `session_id` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n PRIMARY KEY (`id`),\n KEY `post_id` (`post_id`),\n KEY `visit_date` (`visit_date`),\n KEY `user_ip` (`user_ip`),\n KEY `is_logged_in` (`is_logged_in`)\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_analytics`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from HubApp (AI Hub) – Platform for AI Agents