wp_vv_product_approvals
StaticStores product records and related data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| product_id | bigint(20) | NO |
| vendor_id | bigint(20) | NO |
| status | varchar(20) | NO |
| admin_notes | text | YES |
| revision_requested | text | YES |
| submitted_at | timestamp | NO |
| reviewed_at | datetime | YES |
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