wp_fmwp_reports

Static

Stores fmwp reports data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
post_idint(11)NO
user_idint(11)NO
creation_datevarchar(25)YES
auth_idvarchar(32)NO
post_idint(11)NO

CREATE TABLE Statement

CREATE TABLE wp_fmwp_reports ( id int(11) NOT NULL auto_increment, post_id int(11) NOT NULL, user_id int(11) NOT NULL, creation_date varchar(25) NULL, PRIMARY KEY (id) ) $charset_collate; CREATE TABLE wp_fmwp_topic_views ( id int(11) NOT NULL auto_increment, auth_id varchar(32) NOT NULL, post_id int(11) NOT NULL, KEY auth_id_post_id (auth_id, post_id), KEY auth_id (auth_id), KEY post_id (post_id), PRIMARY KEY (id) ) $charset_collate; "; dbDelta( $tables );

Safe to delete?

If you have uninstalled ForumWP – Forum & Discussion Board, 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_fmwp_reports`;

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

Other tables from ForumWP – Forum & Discussion Board