wp_amsgboard

Static

Stores amsgboard data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11)NO
datepostedINT(11)NO
msgpostedVARCHAR(140)NO
senttoVARCHAR(255)NO
readbyVARCHAR(255)NO

CREATE TABLE Statement

CREATE TABLE wp_amsgboard ( id INT(11) NOT NULL AUTO_INCREMENT, dateposted INT(11) NOT NULL, msgposted VARCHAR(140) NOT NULL, sentto VARCHAR(255) NOT NULL, readby VARCHAR(255) NOT NULL, UNIQUE KEY id (id) );

Safe to delete?

If you have uninstalled Admin Msg 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_amsgboard`;

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