wp_cs_profiles
StaticStores cs profiles data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) unsigned | NO |
| name | varchar(255) | NO |
| first_name | varchar(255) | NO |
| last_name | varchar(255) | NO |
| varchar(255) | NO | |
| password | varchar(40) | NO |
| salt | varchar(10) | NO |
| status | enum('active','passive') | NO |
| role | tinyint(4) unsigned | NO |
| about | varchar(255) | NO |
| date_reg | datetime | NO |
| rate | float | NO |
| rate_count | int(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