wp_jbusinessdirectory_conference_sessions

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(255)YES
aliasvarchar(255)YES
datedateYES
start_timetimeYES
end_timetimeYES
locationIdintYES
sessiontypeIdintYES
sessionlevelIdintYES
short_descriptionvarchar(355)YES
descriptiontextYES
viewCountintNO
publishedtinyint(1)YES
conferenceIdintYES
videovarchar(255)YES
colorvarchar(10)YES
register_urlvarchar(245)YES
time_zonevarchar(45)YES
session_urlvarchar(245)YES
createdtimestampNO
lock_contenttinyint(1)YES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_conference_sessions` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `alias` varchar(255) DEFAULT NULL, `date` date DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `locationId` int DEFAULT NULL, `sessiontypeId` int DEFAULT NULL, `sessionlevelId` int DEFAULT NULL, `short_description` varchar(355) DEFAULT NULL, `description` text, `viewCount` int NOT NULL DEFAULT '0', `published` tinyint(1) DEFAULT '1', `conferenceId` int DEFAULT NULL, `video` varchar(255) DEFAULT NULL, `color` varchar(10) DEFAULT NULL, `register_url` varchar(245) DEFAULT NULL, `time_zone` varchar(45) DEFAULT NULL, `session_url` varchar(245) DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `lock_content` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_published` (`published`), KEY `idx_name` (`name`), KEY `idx_short_description` (`short_description`(100)), KEY `conference` (`conferenceId`), KEY `idx_sessiontypeId` (`sessiontypeId`), KEY `idx_sessionlevelId` (`sessionlevelId`), 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_conference_sessions`;

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

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