wp_vv_vendor_reviews

Static

Stores vv vendor reviews data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
vendor_idbigint(20)NO
customer_idbigint(20)NO
order_idbigint(20)NO
ratingtinyint(1)NO
reviewtextYES
vendor_responsetextYES
is_verifiedtinyint(1)NO
created_attimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_vv_vendor_reviews ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) NOT NULL, customer_id bigint(20) NOT NULL, order_id bigint(20) NOT NULL, rating tinyint(1) NOT NULL DEFAULT 5, review text, vendor_response text, is_verified tinyint(1) NOT NULL DEFAULT 0, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY vendor_id (vendor_id), KEY customer_id (customer_id) ) $charset;" );

Safe to delete?

If you have uninstalled VendorVerse aistore multi vendor store for WooCommerce, 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_vv_vendor_reviews`;

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

Other tables from VendorVerse aistore multi vendor store for WooCommerce