wp_jbusinessdirectory_payment_processors
StaticStores jbusinessdirectory payment processors data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| name | varchar(255) | YES |
| type | varchar(255) | YES |
| mode | enum('live','test') | NO |
| timeout | int | YES |
| status | tinyint(1) | NO |
| ordering | tinyint | NO |
| displayfront | tinyint(1) | NO |
| company_id | int | NO |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_payment_processors` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `mode` enum('live','test') NOT NULL DEFAULT 'live', `timeout` int DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `ordering` tinyint NOT NULL DEFAULT '0', `displayfront` tinyint(1) NOT NULL DEFAULT '1', `company_id` int NOT NULL DEFAULT '-1', PRIMARY KEY (`id`), KEY `idx_displayfront` (`displayfront`), KEY `idx_status` (`status`), KEY `idx_type` (`type`) ) ENGINESafe to delete?
If you have uninstalled WP-BusinessDirectory – Business directory plugin for WordPress, 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_jbusinessdirectory_payment_processors`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress