wp_cs_messages

Static

Stores cs messages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
senderint(11) unsignedNO
recipientint(11) unsignedNO
messageVARCHAR(255)NO
whenint(11)NO
roomint(5) unsignedNO
typetinyint(1) unsignedNO

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