wp_vv_withdrawals
StaticStores vv withdrawals data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| vendor_id | bigint(20) | NO |
| amount | decimal(10,2) | NO |
| method | varchar(50) | NO |
| account_details | text | YES |
| gateway_charge | decimal(10,2) | NO |
| status | varchar(20) | NO |
| admin_note | text | YES |
| transaction_ref | varchar(100) | YES |
| processed_at | datetime | YES |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_withdrawals ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) NOT NULL, amount decimal(10,2) NOT NULL, method varchar(50) NOT NULL DEFAULT 'bank', account_details text, gateway_charge decimal(10,2) NOT NULL DEFAULT 0.00, status varchar(20) NOT NULL DEFAULT 'pending', admin_note text, transaction_ref varchar(100) DEFAULT NULL, processed_at datetime DEFAULT NULL, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (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_withdrawals`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce