wp_fpm_subtasks

Static

Stores fpm subtasks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11) unsignedNO
subtasktextYES
todoIDint(11) unsignedYES
userIDint(11) unsignedYES
is_completetinyint(1)NO
createddatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_fpm_subtasks` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `subtask` text, `todoID` int(11) unsigned, `userID` int(11) unsigned, `is_complete` tinyint(1) NOT NULL DEFAULT '0', `created` datetime, PRIMARY KEY (`ID`) ) ENGINE

Safe to delete?

If you have uninstalled Awesome Project Manager, 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_fpm_subtasks`;

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

Other tables from Awesome Project Manager