wp_jbusinessdirectory_conference_speakers

Static

Stores jbusinessdirectory conference speakers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(75)YES
aliasvarchar(125)YES
titlevarchar(255)YES
company_namevarchar(55)YES
company_logovarchar(255)YES
countryIdintYES
speaker_languagevarchar(100)YES
biographytextYES
sessionIdintYES
photovarchar(255)YES
speakertypeIdintYES
featuredtinyint(1)YES
emailvarchar(45)YES
phonevarchar(45)YES
facebookvarchar(100)YES
twittervarchar(100)YES
googlepvarchar(100)YES
linkedinvarchar(100)YES
short_biographytextYES
additional_info_linkvarchar(100)YES
viewCountintNO
publishedtinyint(1)NO
createdtimestampNO

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_conference_speakers` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(75) DEFAULT NULL, `alias` varchar(125) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `company_name` varchar(55) DEFAULT NULL, `company_logo` varchar(255) DEFAULT NULL, `countryId` int DEFAULT NULL, `speaker_language` varchar(100) DEFAULT NULL, `biography` text, `sessionId` int DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `speakertypeId` int DEFAULT NULL, `featured` tinyint(1) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `facebook` varchar(100) DEFAULT NULL, `twitter` varchar(100) DEFAULT NULL, `googlep` varchar(100) DEFAULT NULL, `linkedin` varchar(100) DEFAULT NULL, `short_biography` text, `additional_info_link` varchar(100) DEFAULT NULL, `viewCount` int NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '1', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_published` (`published`), KEY `idx_speakertypeId` (`speakertypeId`), KEY `idx_name` (`name`), KEY `idx_title` (`title`), KEY `idx_company_name` (`company_name`), KEY `idx_phone` (`phone`), KEY `idx_countryId` (`countryId`), KEY `idx_alias` (`alias`), KEY `idx_session` (`sessionId`), KEY `idx_featured` (`featured`) ) 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_conference_speakers`;

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

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