wp_fpm_projects
StaticStores fpm projects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) unsigned | NO |
| project_title | varchar(300) | YES |
| project_desc | text | YES |
| userID | int(11) unsigned | YES |
| created | datetime | YES |
| is_complete | tinyint(1) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_fpm_projects` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `project_title` varchar(300), `project_desc` text, `userID` int(11) unsigned, `created` datetime, `is_complete` tinyint(1) NOT NULL DEFAULT '0', 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_projects`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Awesome Project Manager