wp_dokan_refund
StaticStores dokan refund data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| order_id | bigint(20) unsigned | NO |
| seller_id | bigint(20) | NO |
| refund_amount | decimal(19,4) | NO |
| refund_reason | text | YES |
| item_qtys | varchar(200) | YES |
| item_totals | text | YES |
| item_tax_totals | text | YES |
| restock_items | varchar(10) | YES |
| date | timestamp | NO |
| status | int(1) | NO |
| method | varchar(30) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_dokan_refund` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) unsigned NOT NULL, `seller_id` bigint(20) NOT NULL, `refund_amount` decimal(19,4) NOT NULL, `refund_reason` text NULL, `item_qtys` varchar(200) NULL, `item_totals` text NULL, `item_tax_totals` text NULL, `restock_items` varchar(10) NULL, `date` timestamp NOT NULL, `status` int(1) NOT NULL, `method` varchar(30) 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_refund`;
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