wp_aichat_contexts

Static

Stores aichat contexts data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_aichat_contexts` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `context_type` enum('local','remoto') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'local',\n  `remote_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,\n  `remote_api_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `remote_endpoint` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `embedding_provider` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `processing_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `processing_progress` int DEFAULT '0',\n  `items_to_process` longtext COLLATE utf8mb4_unicode_520_ci,\n  `autosync` tinyint(1) NOT NULL DEFAULT '0',\n  `autosync_mode` enum('updates','updates_and_new') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'updates',\n  `autosync_post_types` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `autosync_last_scan` datetime DEFAULT NULL,\n  `indexing_options` longtext COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 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_contexts`;

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

Other tables from AxiaChat AI – Free AI Chatbot (Answers Customers Automatically)