wp_jbusinessdirectory_company_locations

Static

Stores jbusinessdirectory company locations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(80)YES
company_idintYES
street_numbervarchar(100)YES
addressvarchar(100)YES
cityvarchar(60)YES
countyvarchar(60)YES
postalCodevarchar(45)YES
countryIdintYES
activity_radiusdecimal(10,2)YES
latitudevarchar(45)YES
longitudevarchar(45)YES
phonevarchar(45)YES
provincevarchar(60)YES
areavarchar(60)YES
identifiervarchar(255)YES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_company_locations` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(80) DEFAULT NULL, `company_id` int DEFAULT NULL, `street_number` varchar(100) DEFAULT NULL, `address` varchar(100) DEFAULT NULL, `city` varchar(60) DEFAULT NULL, `county` varchar(60) DEFAULT NULL, `postalCode` varchar(45) DEFAULT NULL, `countryId` int DEFAULT NULL, `activity_radius` decimal(10,2) DEFAULT NULL, `latitude` varchar(45) DEFAULT NULL, `longitude` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `province` varchar(60) DEFAULT NULL, `area` varchar(60) DEFAULT NULL, `identifier` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_country` (`countryId`), KEY `idx_company` (`company_id`), KEY `idx_identifier` (`identifier`), KEY `idx_city` (`city`), KEY `idx_county` (`county`), KEY `idx_province` (`province`), KEY `idx_area` (`area`) ) 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_locations`;

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

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