wp_fpm_project_user

Static

Stores fpm project user data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11) unsignedNO
userIDint(11) unsignedYES
projectIDint(11) unsignedYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_fpm_project_user` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `userID` int(11) unsigned, `projectID` int(11) unsigned, 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_project_user`;

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

Other tables from Awesome Project Manager