wp_bws_rating
StaticStores bws rating data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| object_id | INT( 10 ) | NO |
| post_id | INT( 10 ) | NO |
| rating | VARCHAR(255) | NO |
| datetime | DATETIME | NO |
| object_type | ENUM( 'post', 'comment' ) | YES |
| user_ip | CHAR( 15 ) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_bws_rating` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `object_id` INT( 10 ) NOT NULL, `post_id` INT( 10 ) NOT NULL, `rating` VARCHAR(255) NOT NULL COLLATE utf8_general_ci DEFAULT '0', `datetime` DATETIME NOT NULL, `object_type` ENUM( 'post', 'comment' ), `user_ip` CHAR( 15 ) NOT NULL, PRIMARY KEY ( `id` ) ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled Rating by BestWebSoft, 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_bws_rating`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.