wp_dokan_withdraw
StaticStores dokan withdraw data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| user_id | bigint(20) unsigned | NO |
| amount | decimal(19,4) | NO |
| date | timestamp | NO |
| status | int(1) | NO |
| method | varchar(30) | NO |
| note | text | NO |
| details | longtext | YES |
| ip | varchar(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