wp_bws_rating

Static

Stores bws rating data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
object_idINT( 10 )NO
post_idINT( 10 )NO
ratingVARCHAR(255)NO
datetimeDATETIMENO
object_typeENUM( 'post', 'comment' )YES
user_ipCHAR( 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.