wp_fpm_messages

Static

Stores fpm messages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11) unsignedNO
message_titlevarchar(300)YES
messagetextYES
userIDint(11) unsignedYES
projectIDint(11) unsignedYES
user_namevarchar(100)YES
project_titlevarchar(300)YES
file_idslongtextYES
createddatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_fpm_messages` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `message_title` varchar(300), `message` text, `userID` int(11) unsigned, `projectID` int(11) unsigned, `user_name` varchar(100), `project_title` varchar(300), `file_ids` longtext, `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_messages`;

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

Other tables from Awesome Project Manager