wp_jbusinessdirectory_company_offer_orders
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| first_name | varchar(45) | YES |
| last_name | varchar(45) | YES |
| address | varchar(100) | YES |
| varchar(45) | YES | |
| phone | varchar(45) | YES |
| postal_code | varchar(45) | YES |
| city | varchar(45) | YES |
| region | varchar(45) | YES |
| amount | decimal(12,2) | YES |
| created | timestamp | NO |
| user_id | int | YES |
| status | tinyint | YES |
| token | varchar(255) | YES |
| tracking_link | varchar(255) | YES |
| shipping | decimal(12,2) | YES |
| initial_amount | decimal(12,2) | YES |
| shipping_method | int | YES |
| vat_amount | decimal(12,2) | YES |
| vat | decimal(12,2) | YES |
| country_id | int | YES |
| currency_id | int | YES |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_company_offer_orders` ( `id` int NOT NULL AUTO_INCREMENT, `first_name` varchar(45) DEFAULT NULL, `last_name` varchar(45) DEFAULT NULL, `address` varchar(100) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `postal_code` varchar(45) DEFAULT NULL, `city` varchar(45) DEFAULT NULL, `region` varchar(45) DEFAULT NULL, `amount` decimal(12,2) DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_id` int DEFAULT NULL, `status` tinyint DEFAULT NULL, `token` varchar(255) DEFAULT NULL, `tracking_link` varchar(255) DEFAULT NULL, `shipping` decimal(12,2) DEFAULT NULL, `initial_amount` decimal(12,2) DEFAULT NULL, `shipping_method` int DEFAULT NULL, `vat_amount` decimal(12,2) DEFAULT NULL, `vat` decimal(12,2) DEFAULT NULL, `country_id` int DEFAULT NULL, `currency_id` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_user` (`user_id`), KEY `idx_status` (`status`) ) 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_orders`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress