wp_vv_affiliates
StaticStores vv affiliates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| referrer_vendor_id | bigint(20) | NO |
| referred_vendor_id | bigint(20) | NO |
| commission_rate | decimal(5,2) | NO |
| total_earned | decimal(10,2) | NO |
| status | varchar(20) | NO |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_affiliates ( id bigint(20) NOT NULL AUTO_INCREMENT, referrer_vendor_id bigint(20) NOT NULL, referred_vendor_id bigint(20) NOT NULL, commission_rate decimal(5,2) NOT NULL DEFAULT 5.00, total_earned decimal(10,2) NOT NULL DEFAULT 0.00, status varchar(20) NOT NULL DEFAULT 'active', created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 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_affiliates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce