wp_fpm_lists
StaticStores fpm lists data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) unsigned | NO |
| list_title | varchar(300) | YES |
| userID | int(11) unsigned | YES |
| user_name | varchar(100) | YES |
| projectID | int(11) unsigned | YES |
| created | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_fpm_lists` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `list_title` varchar(300), `userID` int(11) unsigned, `user_name` varchar(100), `projectID` int(11) unsigned, `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_lists`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Awesome Project Manager