wp_jbusinessdirectory_company_contact
StaticStores jbusinessdirectory company contact data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| companyId | int | NO |
| contact_name | varchar(50) | YES |
| contact_function | varchar(50) | YES |
| contact_department | varchar(100) | YES |
| contact_job_title | varchar(100) | YES |
| contact_email | varchar(60) | YES |
| contact_phone | varchar(20) | YES |
| contact_fax | varchar(20) | YES |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_company_contact` ( `id` int NOT NULL AUTO_INCREMENT, `companyId` int NOT NULL, `contact_name` varchar(50) DEFAULT NULL, `contact_function` varchar(50) DEFAULT NULL, `contact_department` varchar(100) DEFAULT NULL, `contact_job_title` varchar(100) DEFAULT NULL, `contact_email` varchar(60) DEFAULT NULL, `contact_phone` varchar(20) DEFAULT NULL, `contact_fax` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`,`companyId`), KEY `R_13` (`companyId`) ) 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_contact`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress