wp_vv_withdrawals

Static

Stores vv withdrawals data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
vendor_idbigint(20)NO
amountdecimal(10,2)NO
methodvarchar(50)NO
account_detailstextYES
gateway_chargedecimal(10,2)NO
statusvarchar(20)NO
admin_notetextYES
transaction_refvarchar(100)YES
processed_atdatetimeYES
created_attimestampNO

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