wp_aichat_conversations
StaticStores aichat conversations data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_aichat_conversations` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `user_id` bigint unsigned DEFAULT '0',\n `session_id` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `bot_slug` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `model` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `provider` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `page_id` bigint unsigned DEFAULT '0',\n `ip_address` varbinary(16) DEFAULT NULL,\n `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `response` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `prompt_tokens` int unsigned DEFAULT NULL,\n `completion_tokens` int unsigned DEFAULT NULL,\n `total_tokens` int unsigned DEFAULT NULL,\n `cost_micros` bigint DEFAULT NULL,\n `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n KEY `idx_session_bot` (`session_id`,`bot_slug`,`id`),\n KEY `idx_user` (`user_id`),\n KEY `idx_page` (`page_id`),\n KEY `idx_model` (`model`),\n KEY `idx_created_at` (`created_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled AxiaChat AI – Free AI Chatbot (Answers Customers Automatically), 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_aichat_conversations`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AxiaChat AI – Free AI Chatbot (Answers Customers Automatically)