wp_cs_val_tab

Static

Stores cs val tab data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
valueVARCHAR(255)NO

CREATE TABLE Statement

CREATE TABLE `cs_val_tab` ( `id` int(11) unsigned NOT NULL auto_increment, `value` VARCHAR(255) NOT NULL, PRIMARY KEY (`id`) )"; $wpdb->query($message_val_tab);

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_val_tab`;

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

Other tables from Personal Chat room