wp_jbusinessdirectory_companies

Static

Stores jbusinessdirectory companies data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(100)YES
aliasvarchar(100)YES
comercialNamevarchar(120)YES
short_descriptionvarchar(500)YES
descriptiontextYES
meta_titlevarchar(100)YES
meta_descriptiontextYES
street_numbervarchar(100)YES
addressvarchar(100)YES
cityvarchar(60)YES
countyvarchar(60)YES
provincevarchar(60)YES
areavarchar(60)YES
countryIdintYES
websitevarchar(250)YES
keywordsvarchar(250)YES
registrationCodevarchar(20)YES
phonevarchar(20)YES
emailvarchar(100)YES
faxvarchar(20)YES
statetinyintYES
typeIdvarchar(255)YES
logoLocationvarchar(245)YES
creationDatetimestampYES
modifieddatetimeYES
mainSubcategoryintYES
latitudevarchar(45)YES
longitudevarchar(45)YES
activity_radiusdecimal(10,0)NO
userIdintNO
created_byintNO
averageRatingdecimal(2,1)NO
review_scoredecimal(2,1)NO
approvedtinyint(1)NO
viewCountintNO
websiteCountintNO
contactCountintNO
taxCodevarchar(45)YES
package_idintNO
facebookvarchar(150)YES
twittervarchar(150)YES
googlepvarchar(150)YES
skypevarchar(150)YES
linkedinvarchar(150)YES
youtubevarchar(150)YES
instagramvarchar(150)YES
pinterestvarchar(150)YES
whatsappvarchar(150)YES
postalCodevarchar(55)YES
mobilevarchar(55)YES
sloganvarchar(500)YES
publish_only_citytinyint(1)YES
featuredtinyint(1)NO
business_hoursvarchar(255)YES
notes_hoursvarchar(255)YES
custom_tab_namevarchar(100)YES
custom_tab_contenttextYES
job_tab_namevarchar(100)YES
job_tab_contenttextYES
business_cover_imagevarchar(245)YES
publish_start_datedateYES
publish_end_datedateYES
notified_datetimestampYES
time_zonevarchar(15)YES
establishment_yearvarchar(10)YES
employeesvarchar(100)YES
ad_imagevarchar(250)YES
disapproval_texttextYES
yelp_idvarchar(255)YES
enable_request_quotetinyint(1)YES
trail_weeks_hourstextYES
trail_weeks_statustinyint(1)YES
trail_weeks_addressvarchar(100)YES
ad_captionvarchar(245)YES
recommendedtinyint(1)YES
orderingtinyintNO
company_viewtinyint(1)YES
opening_statustinyintNO
min_project_sizevarchar(100)YES
hourly_ratevarchar(10)YES
tiktokvarchar(150)YES
areas_servedvarchar(455)YES
available_datesvarchar(445)YES
review_statustinyint(1)YES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_companies` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `alias` varchar(100) DEFAULT NULL, `comercialName` varchar(120) DEFAULT NULL, `short_description` varchar(500) DEFAULT NULL, `description` text, `meta_title` varchar(100) DEFAULT NULL, `meta_description` text, `street_number` varchar(100) DEFAULT NULL, `address` varchar(100) DEFAULT NULL, `city` varchar(60) DEFAULT NULL, `county` varchar(60) DEFAULT NULL, `province` varchar(60) DEFAULT NULL, `area` varchar(60) DEFAULT NULL, `countryId` int DEFAULT NULL, `website` varchar(250) DEFAULT NULL, `keywords` varchar(250) DEFAULT NULL, `registrationCode` varchar(20) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `fax` varchar(20) DEFAULT NULL, `state` tinyint DEFAULT '1', `typeId` varchar(255) DEFAULT NULL, `logoLocation` varchar(245) DEFAULT NULL, `creationDate` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `modified` datetime DEFAULT NULL, `mainSubcategory` int DEFAULT NULL, `latitude` varchar(45) DEFAULT NULL, `longitude` varchar(45) DEFAULT NULL, `activity_radius` decimal(10,0) NOT NULL DEFAULT '0', `userId` int NOT NULL DEFAULT '0', `created_by` int NOT NULL DEFAULT '0', `averageRating` decimal(2,1) NOT NULL DEFAULT '0.0', `review_score` decimal(2,1) NOT NULL DEFAULT '0.0', `approved` tinyint(1) NOT NULL DEFAULT '0', `viewCount` int NOT NULL DEFAULT '0', `websiteCount` int NOT NULL DEFAULT '0', `contactCount` int NOT NULL DEFAULT '0', `taxCode` varchar(45) DEFAULT NULL, `package_id` int NOT NULL DEFAULT '0', `facebook` varchar(150) DEFAULT NULL, `twitter` varchar(150) DEFAULT NULL, `googlep` varchar(150) DEFAULT NULL, `skype` varchar(150) DEFAULT NULL, `linkedin` varchar(150) DEFAULT NULL, `youtube` varchar(150) DEFAULT NULL, `instagram` varchar(150) DEFAULT NULL, `pinterest` varchar(150) DEFAULT NULL, `whatsapp` varchar(150) DEFAULT NULL, `postalCode` varchar(55) DEFAULT NULL, `mobile` varchar(55) DEFAULT NULL, `slogan` varchar(500) DEFAULT NULL, `publish_only_city` tinyint(1) DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `business_hours` varchar(255) DEFAULT NULL, `notes_hours` varchar(255) DEFAULT NULL, `custom_tab_name` varchar(100) DEFAULT NULL, `custom_tab_content` text, `job_tab_name` varchar(100) DEFAULT NULL, `job_tab_content` text, `business_cover_image` varchar(245) DEFAULT NULL, `publish_start_date` date DEFAULT NULL, `publish_end_date` date DEFAULT NULL, `notified_date` timestamp NULL DEFAULT NULL, `time_zone` varchar(15) DEFAULT NULL, `establishment_year` varchar(10) DEFAULT NULL, `employees` varchar(100) DEFAULT NULL, `ad_image` varchar(250) DEFAULT NULL, `disapproval_text` text, `yelp_id` varchar(255) DEFAULT NULL, `enable_request_quote` tinyint(1) DEFAULT '1', `trail_weeks_hours` text, `trail_weeks_status` tinyint(1) DEFAULT '1', `trail_weeks_address` varchar(100) DEFAULT NULL, `ad_caption` varchar(245) DEFAULT NULL, `recommended` tinyint(1) DEFAULT '0', `ordering` tinyint NOT NULL DEFAULT '0', `company_view` tinyint(1) DEFAULT '0', `opening_status` tinyint NOT NULL DEFAULT '0', `min_project_size` varchar(100) DEFAULT NULL, `hourly_rate` varchar(10) DEFAULT NULL, `tiktok` varchar(150) DEFAULT NULL, `areas_served` varchar(455) DEFAULT NULL, `available_dates` varchar(445) DEFAULT NULL, `review_status` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_type` (`typeId`), KEY `idx_user` (`userId`), KEY `idx_state` (`state`), KEY `idx_approved` (`approved`), KEY `idx_country` (`countryId`), KEY `idx_package` (`package_id`), KEY `idx_name` (`name`), KEY `idx_keywords` (`keywords`), KEY `idx_description` (`description`(100)), KEY `idx_city` (`city`), KEY `idx_county` (`county`), KEY `idx_maincat` (`mainSubcategory`), KEY `idx_zipcode` (`latitude`,`longitude`), KEY `idx_phone` (`phone`), KEY `idx_creationDate` (`creationDate`), KEY `idx_review_score` (`review_score`), KEY `idx_province` (`province`), KEY `idx_area` (`area`), KEY `idx_publish_start_date` (`publish_start_date`), KEY `idx_publish_end_date` (`publish_end_date`), KEY `idx_alias` (`alias`) ) 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_companies`;

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

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