wp_hexagonal_review
StaticStores hexagonal review data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| uuid | varchar(300) | NO |
| post_id | bigint(20) unsigned | YES |
| status | varchar(255) | YES |
| title | varchar(255) | YES |
| content | mediumtext | YES |
| author | varchar(255) | YES |
| stars | float | NO |
| varchar(255) | YES | |
| created_at | varchar(255) | NO |
| updated_at | varchar(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