wp_dokan_vendor_balance
StaticStores dokan vendor balance data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| vendor_id | bigint(20) unsigned | NO |
| trn_id | bigint(20) unsigned | NO |
| trn_type | varchar(30) | NO |
| perticulars | text | NO |
| debit | decimal(19,4) | NO |
| credit | decimal(19,4) | NO |
| status | varchar(30) | YES |
| trn_date | timestamp | NO |
| balance_date | timestamp | NO |
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