wp_apbd_wps_chatbot_session
StaticStores session data for tracking user or visitor state.
CREATE TABLE Statement
CREATE TABLE `wp_apbd_wps_chatbot_session` (\n `id` int unsigned NOT NULL AUTO_INCREMENT,\n `session_id` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `user_id` int NOT NULL DEFAULT '0',\n `guest_identifier` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `first_query` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `message_count` int NOT NULL DEFAULT '1',\n `last_feedback` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'drop(H=Helpful,N=Neutral,U=Unhelpful)',\n `session_type` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'T' COMMENT 'drop(T=Text,V=Voice)',\n `duration` int DEFAULT NULL,\n `is_starred` tinyint(1) NOT NULL DEFAULT '0',\n `started_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `last_activity_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n UNIQUE KEY `idx_session_id` (`session_id`),\n KEY `idx_started_at` (`started_at`),\n KEY `idx_user_id` (`user_id`),\n KEY `idx_is_starred` (`is_starred`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System, 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_apbd_wps_chatbot_session`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System