wp_jbusinessdirectory_company_offer_order_products

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
order_idintNO
offer_idintNO
quantityintYES
pricedecimal(12,2)YES
currencyIdintNO
combination_idsvarchar(255)YES
combination_valuesvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_company_offer_order_products` ( `order_id` int NOT NULL, `offer_id` int NOT NULL, `quantity` int DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `currencyId` int NOT NULL, `combination_ids` varchar(255) DEFAULT NULL, `combination_values` varchar(255) DEFAULT NULL, PRIMARY KEY (`order_id`,`offer_id`) ) 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_company_offer_order_products`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from WP-BusinessDirectory – Business directory plugin for WordPress