wp_dokan_reverse_withdrawal

Static

Stores dokan reverse withdrawal data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
trn_idbigint(20) UNSIGNEDNO
trn_typevarchar(200)NO
vendor_idbigint(20) UNSIGNEDNO
notemediumtextYES
debitdecimal(19,4)NO
creditdecimal(19,4)NO
trn_dateint(11) UNSIGNEDNO

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