wp_dokan_orders
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| order_id | bigint(20) | YES |
| seller_id | bigint(20) | YES |
| order_total | decimal(19,4) | YES |
| net_amount | decimal(19,4) | YES |
| order_status | varchar(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