wp_fpm_folders

Static

Stores fpm folders data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11) unsignedNO
folder_titlevarchar(250)YES
file_idslongtextYES
projectIDint(11) unsignedYES
project_titlevarchar(255)YES
userIDint(11) unsignedYES
user_namevarchar(100)YES
is_archivetinyint(1)NO
createddatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_fpm_folders` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `folder_title` varchar(250), `file_ids` longtext, `projectID` int(11) unsigned, `project_title` varchar(255), `userID` int(11) unsigned, `user_name` varchar(100), `is_archive` 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_folders`;

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

Other tables from Awesome Project Manager