wp_vv_vendor_subscriptions
StaticStores vv vendor subscriptions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| vendor_id | bigint(20) | NO |
| plan_id | bigint(20) | NO |
| starts_at | datetime | NO |
| expires_at | datetime | NO |
| status | varchar(20) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_vendor_subscriptions ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) NOT NULL, plan_id bigint(20) NOT NULL, starts_at datetime NOT NULL, expires_at datetime NOT NULL, status varchar(20) NOT NULL DEFAULT 'active', PRIMARY KEY (id), KEY vendor_id (vendor_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_subscriptions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce