wp_dokan_orders

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
order_idbigint(20)YES
seller_idbigint(20)YES
order_totaldecimal(19,4)YES
net_amountdecimal(19,4)YES
order_statusvarchar(30)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dokan_orders` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `order_total` decimal(19,4) DEFAULT NULL, `net_amount` decimal(19,4) DEFAULT NULL, `order_status` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_id` (`order_id`), KEY `seller_id` (`seller_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_orders`;

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