wp_jbusinessdirectory_payment_processors

Static

Stores jbusinessdirectory payment processors data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(255)YES
typevarchar(255)YES
modeenum('live','test')NO
timeoutintYES
statustinyint(1)NO
orderingtinyintNO
displayfronttinyint(1)NO
company_idintNO

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`) ) ENGINE

Safe 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