wp_mwai_tasklogs

Static

Stores mwai tasklogs data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_mwai_tasklogs` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `task_id` bigint unsigned NOT NULL,\n  `started` datetime NOT NULL,\n  `ended` datetime DEFAULT NULL,\n  `status` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_520_ci,\n  `time_taken` float DEFAULT NULL,\n  `memory_peak` bigint DEFAULT NULL,\n  `step` int DEFAULT NULL,\n  `created` datetime NOT NULL,\n  PRIMARY KEY (`id`),\n  KEY `task_id_started` (`task_id`,`started`)\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_tasklogs`;

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