wp_dokan_reverse_withdrawal
StaticStores dokan reverse withdrawal data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | NO |
| trn_id | bigint(20) UNSIGNED | NO |
| trn_type | varchar(200) | NO |
| vendor_id | bigint(20) UNSIGNED | NO |
| note | mediumtext | YES |
| debit | decimal(19,4) | NO |
| credit | decimal(19,4) | NO |
| trn_date | int(11) UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_dokan_reverse_withdrawal` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `trn_id` bigint(20) UNSIGNED NOT NULL, `trn_type` varchar(200) NOT NULL DEFAULT 'order_commission', `vendor_id` bigint(20) UNSIGNED NOT NULL, `note` mediumtext DEFAULT NULL, `debit` decimal(19,4) NOT NULL DEFAULT '0.0000', `credit` decimal(19,4) NOT NULL DEFAULT '0.0000', `trn_date` int(11) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `trn_date` (`trn_date`), KEY `vendor_id_trn_date` (`vendor_id`,`trn_date`), KEY `vendor_id` (`vendor_id`), KEY `trn_id_type` (`trn_id`,`trn_type`(191)), KEY `vendor_id_trn_date_type` (`vendor_id`,`trn_date`,`trn_type`(191)) ) ENGINE
Safe to delete?
If you have uninstalled Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy, 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_dokan_reverse_withdrawal`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy