wp_jbusinessdirectory_billing_details

Static

Stores jbusinessdirectory billing details data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
first_namevarchar(45)YES
last_namevarchar(45)YES
company_namevarchar(55)YES
addressvarchar(255)YES
street_numbervarchar(100)YES
postal_codevarchar(45)YES
cityvarchar(45)YES
regionvarchar(45)YES
countryvarchar(45)YES
emailvarchar(45)YES
phonevarchar(45)YES
user_idintYES
vat_detailsvarchar(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