wp_vv_vendor_plans
StaticStores vv vendor plans data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| name | varchar(100) | NO |
| price | decimal(10,2) | NO |
| duration_days | int(11) | NO |
| max_products | int(11) | NO |
| commission_rate | decimal(5,2) | NO |
| featured_listing | tinyint(1) | NO |
| priority_support | tinyint(1) | NO |
| is_active | tinyint(1) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_vendor_plans ( id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(100) NOT NULL, price decimal(10,2) NOT NULL DEFAULT 0.00, duration_days int(11) NOT NULL DEFAULT 30, max_products int(11) NOT NULL DEFAULT 10, commission_rate decimal(5,2) NOT NULL DEFAULT 10.00, featured_listing tinyint(1) NOT NULL DEFAULT 0, priority_support tinyint(1) NOT NULL DEFAULT 0, is_active tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (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_plans`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce