wp_jbusinessdirectory_billing_details
StaticStores jbusinessdirectory billing details data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| first_name | varchar(45) | YES |
| last_name | varchar(45) | YES |
| company_name | varchar(55) | YES |
| address | varchar(255) | YES |
| street_number | varchar(100) | YES |
| postal_code | varchar(45) | YES |
| city | varchar(45) | YES |
| region | varchar(45) | YES |
| country | varchar(45) | YES |
| varchar(45) | YES | |
| phone | varchar(45) | YES |
| user_id | int | YES |
| vat_details | varchar(455) | YES |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_billing_details` ( `id` int NOT NULL AUTO_INCREMENT, `first_name` varchar(45) DEFAULT NULL, `last_name` varchar(45) DEFAULT NULL, `company_name` varchar(55) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `street_number` varchar(100) DEFAULT NULL, `postal_code` varchar(45) DEFAULT NULL, `city` varchar(45) DEFAULT NULL, `region` varchar(45) DEFAULT NULL, `country` varchar(45) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `user_id` int DEFAULT NULL, `vat_details` varchar(455) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_user` (`user_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_billing_details`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress