wp_pm_task_type_task

Static

Stores pm task type task data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_pm_task_type_task` (\n  `type_id` int unsigned NOT NULL,\n  `task_id` int unsigned NOT NULL,\n  `project_id` int unsigned NOT NULL,\n  `list_id` int unsigned NOT NULL,\n  UNIQUE KEY `task_id` (`task_id`),\n  KEY `type_id` (`type_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3

Safe to delete?

If you have uninstalled Project Manager – AI Powered Project Management, Task Management, Kanban Board & Time Tracker, 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_pm_task_type_task`;

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

Other tables from Project Manager – AI Powered Project Management, Task Management, Kanban Board & Time Tracker