wp_hexagonal_review

Static

Stores hexagonal review data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
uuidvarchar(300)NO
post_idbigint(20) unsignedYES
statusvarchar(255)YES
titlevarchar(255)YES
contentmediumtextYES
authorvarchar(255)YES
starsfloatNO
emailvarchar(255)YES
created_atvarchar(255)NO
updated_atvarchar(255)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_hexagonal_review` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(300) NOT NULL DEFAULT '', `post_id` bigint(20) unsigned DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `content` mediumtext CHARACTER SET latin1 COLLATE latin1_bin, `author` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `stars` float NOT NULL, `email` varchar(255) DEFAULT NULL, `created_at` varchar(255) NOT NULL DEFAULT '', `updated_at` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uuid` (`uuid`), KEY `relations` (`post_id`), CONSTRAINT `relations` 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`;

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

Other tables from Hexagonal Reviews