wp_vv_inventory

Static

Stores vv inventory data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
vendor_idbigint(20)NO
product_idbigint(20)NO
skuvarchar(100)YES
quantityint(11)NO
low_stock_thresholdint(11)NO
last_updatedtimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_vv_inventory ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) NOT NULL, product_id bigint(20) NOT NULL, sku varchar(100) DEFAULT NULL, quantity int(11) NOT NULL DEFAULT 0, low_stock_threshold int(11) NOT NULL DEFAULT 5, last_updated timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY vendor_product (vendor_id, product_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_inventory`;

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

Other tables from VendorVerse aistore multi vendor store for WooCommerce