wp_dokan_refund

Static

Stores dokan refund data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
order_idbigint(20) unsignedNO
seller_idbigint(20)NO
refund_amountdecimal(19,4)NO
refund_reasontextYES
item_qtysvarchar(200)YES
item_totalstextYES
item_tax_totalstextYES
restock_itemsvarchar(10)YES
datetimestampNO
statusint(1)NO
methodvarchar(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