wp_kanpress_task
VerifiedStores kanpress task data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_kanpress_task` (\n `task_id` int unsigned NOT NULL AUTO_INCREMENT,\n `proposed_by` bigint unsigned NOT NULL,\n `assigned_to` bigint unsigned DEFAULT NULL,\n `revised_by` bigint unsigned DEFAULT NULL,\n `term_id` bigint unsigned NOT NULL,\n `post_id` bigint unsigned DEFAULT NULL,\n `priority` tinyint unsigned NOT NULL,\n `status` tinyint unsigned NOT NULL COMMENT '0=propuesta, 1=asignada, 2=pendiente, 3=terminada',\n `summary` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_spanish_ci NOT NULL,\n `description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_spanish_ci NOT NULL,\n `time_proposed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `time_assigned` timestamp NULL DEFAULT '0000-00-00 00:00:00',\n `time_done` timestamp NULL DEFAULT '0000-00-00 00:00:00',\n PRIMARY KEY (`task_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Safe to delete?
If you have uninstalled Kanpress, 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_kanpress_task`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.