wp_dokan_withdraw

Static

Stores dokan withdraw data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
user_idbigint(20) unsignedNO
amountdecimal(19,4)NO
datetimestampNO
statusint(1)NO
methodvarchar(30)NO
notetextNO
detailslongtextYES
ipvarchar(50)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dokan_withdraw` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `amount` decimal(19,4) NOT NULL, `date` timestamp NOT NULL, `status` int(1) NOT NULL, `method` varchar(30) NOT NULL, `note` text NOT NULL, `details` longtext DEFAULT NULL, `ip` varchar(50) NOT NULL, PRIMARY KEY (id) ) 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_withdraw`;

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