wp_dokan_vendor_balance

Static

Stores dokan vendor balance data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
vendor_idbigint(20) unsignedNO
trn_idbigint(20) unsignedNO
trn_typevarchar(30)NO
perticularstextNO
debitdecimal(19,4)NO
creditdecimal(19,4)NO
statusvarchar(30)YES
trn_datetimestampNO
balance_datetimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dokan_vendor_balance` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `vendor_id` bigint(20) unsigned NOT NULL, `trn_id` bigint(20) unsigned NOT NULL, `trn_type` varchar(30) NOT NULL, `perticulars` text NOT NULL, `debit` decimal(19,4) NOT NULL, `credit` decimal(19,4) NOT NULL, `status` varchar(30) DEFAULT NULL, `trn_date` timestamp NOT NULL, `balance_date` timestamp 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_vendor_balance`;

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