wp_mwai_tasks
StaticStores mwai tasks data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_mwai_tasks` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `task_name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `description` text COLLATE utf8mb4_unicode_520_ci,\n `category` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'general',\n `schedule` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `status` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',\n `next_run` datetime DEFAULT NULL,\n `last_run` datetime DEFAULT NULL,\n `expires_at` datetime DEFAULT NULL,\n `step` int NOT NULL DEFAULT '0',\n `step_name` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `step_data` longtext COLLATE utf8mb4_unicode_520_ci,\n `data` longtext COLLATE utf8mb4_unicode_520_ci,\n `meta` longtext COLLATE utf8mb4_unicode_520_ci,\n `error_count` int NOT NULL DEFAULT '0',\n `max_retries` int NOT NULL DEFAULT '3',\n `created` datetime NOT NULL,\n `updated` datetime NOT NULL,\n PRIMARY KEY (`id`),\n UNIQUE KEY `task_name` (`task_name`),\n KEY `status_next` (`status`,`next_run`),\n KEY `category` (`category`),\n KEY `expires` (`expires_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled AI Engine – The Chatbot, AI Framework & MCP for WordPress, 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_mwai_tasks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI Engine – The Chatbot, AI Framework & MCP for WordPress