wp_hexagonal_review_average

Static

Stores hexagonal review average data created by this plugin.

Column Definitions

ColumnTypeNullable
post_idbigint(20) unsignedNO
review_countint(11)YES
total_reviewint(11)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_hexagonal_review_average` ( `post_id` bigint(20) unsigned NOT NULL, `review_count` int(11) DEFAULT '0', `total_review` int(11) DEFAULT '0', PRIMARY KEY (`post_id`), CONSTRAINT `post_id` FOREIGN KEY (`post_id`) REFERENCES `wp_posts` (`ID`) ) ENGINE

Safe to delete?

If you have uninstalled Hexagonal Reviews, 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_hexagonal_review_average`;

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

Other tables from Hexagonal Reviews