wp_vv_product_approvals

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
product_idbigint(20)NO
vendor_idbigint(20)NO
statusvarchar(20)NO
admin_notestextYES
revision_requestedtextYES
submitted_attimestampNO
reviewed_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_vv_product_approvals ( id bigint(20) NOT NULL AUTO_INCREMENT, product_id bigint(20) NOT NULL, vendor_id bigint(20) NOT NULL, status varchar(20) NOT NULL DEFAULT 'pending', admin_notes text, revision_requested text, submitted_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, reviewed_at datetime DEFAULT NULL, PRIMARY KEY (id), KEY product_id (product_id), KEY vendor_id (vendor_id), KEY status (status) ) $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_product_approvals`;

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

Other tables from VendorVerse aistore multi vendor store for WooCommerce