wp_cs_profiles

Static

Stores cs profiles data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) unsignedNO
namevarchar(255)NO
first_namevarchar(255)NO
last_namevarchar(255)NO
emailvarchar(255)NO
passwordvarchar(40)NO
saltvarchar(10)NO
statusenum('active','passive')NO
roletinyint(4) unsignedNO
aboutvarchar(255)NO
date_regdatetimeNO
ratefloatNO
rate_countint(11)NO

CREATE TABLE Statement

CREATE TABLE `cs_profiles` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `first_name` varchar(255) NOT NULL default '', `last_name` varchar(255) NOT NULL default '', `email` varchar(255) NOT NULL default '', `password` varchar(40) NOT NULL default '', `salt` varchar(10) NOT NULL default '', `status` enum('active','passive') NOT NULL default 'active', `role` tinyint(4) unsigned NOT NULL default '1', `about` varchar(255) NOT NULL, `date_reg` datetime NOT NULL default '0000-00-00 00:00:00', `rate` float NOT NULL, `rate_count` int(11) NOT NULL, PRIMARY KEY (`id`) )"; $wpdb->query($profile_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_profiles`;

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

Other tables from Personal Chat room