wp_aichat_chunks
StaticStores aichat chunks data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_aichat_chunks` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `id_context` bigint unsigned DEFAULT NULL,\n `post_id` bigint unsigned NOT NULL,\n `chunk_index` int NOT NULL DEFAULT '0',\n `type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `content` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `embedding` longtext COLLATE utf8mb4_unicode_520_ci,\n `tokens` int DEFAULT NULL,\n `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,\n `updated_at` timestamp NULL DEFAULT NULL,\n PRIMARY KEY (`id`),\n UNIQUE KEY `uniq_post_ctx_chunk` (`post_id`,`id_context`,`chunk_index`),\n KEY `idx_context` (`id_context`),\n KEY `idx_post_context` (`post_id`,`id_context`),\n CONSTRAINT `wp_aichat_chunks_ibfk_1` FOREIGN KEY (`id_context`) REFERENCES `wp_aichat_contexts` (`id`) ON DELETE SET NULL\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_chunks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AxiaChat AI – Free AI Chatbot (Answers Customers Automatically)