wp_amsgboard
StaticStores amsgboard data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) | NO |
| dateposted | INT(11) | NO |
| msgposted | VARCHAR(140) | NO |
| sentto | VARCHAR(255) | NO |
| readby | VARCHAR(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.