wp_cs_messages
StaticStores cs messages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| sender | int(11) unsigned | NO |
| recipient | int(11) unsigned | NO |
| message | VARCHAR(255) | NO |
| when | int(11) | NO |
| room | int(5) unsigned | NO |
| type | tinyint(1) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE `cs_messages` ( `id` int(11) unsigned NOT NULL auto_increment, `sender` int(11) unsigned NOT NULL, `recipient` int(11) unsigned NOT NULL default '0', `message` VARCHAR(255) NOT NULL, `when` int(11) NOT NULL default '0', `room` int(5) unsigned NOT NULL default '0', `type` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`id`) )"; $wpdb->query($message_table);
Safe to delete?
If you have uninstalled Personal Chat room, 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_cs_messages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Personal Chat room